/* 
 * freeundress.works - Main Stylesheet
 * Unique teal-cyan theme with dark accents
 */

/* Base styles and CSS reset */
:root {
    --primary: #61dafb;       /* Bright cyan */
    --primary-dark: #0099ff;  /* Deep blue */
    --dark: #20232a;          /* Dark background */
    --dark-light: #282c34;    /* Lighter dark */
    --text-light: #ffffff;    /* White text */
    --text-dark: #333333;     /* Dark text */
    --bg-light: #f6f9fc;      /* Light background */
    --gradient: linear-gradient(135deg, #61dafb 0%, #0099ff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.8em;
    line-height: 1.3;
    font-weight: 600;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(97, 218, 251, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(97, 218, 251, 0.4);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(97, 218, 251, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(97, 218, 251, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(97, 218, 251, 0.3);
    }
}

/* Navigation */
.navbar {
    background-color: var(--dark);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.brand span {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 200;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--dark);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.4s ease;
    list-style: none;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin: 15px 0;
}

.nav-menu a {
    color: var(--text-light);
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-cta {
    margin-top: 20px;
    background: var(--gradient);
    padding: 8px 15px;
    border-radius: 30px;
    color: white !important;
    text-align: center;
}

.nav-cta:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: var(--dark-light);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(97, 218, 251, 0.1), transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.ai-graphic {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--bg-light);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--text-dark);
    margin-bottom: 0;
    opacity: 0.8;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: white;
    position: relative;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.step-content h3 {
    color: var(--dark);
}

.step-content p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--text-light);
    text-align: center;
}

.cta-section h2 {
    color: var(--text-light);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--dark-light);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    margin-right: 10px;
}

.footer-brand span {
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
    }
    
    .nav-menu li {
        margin: 0 15px;
    }
    
    .nav-cta {
        margin-top: 0;
        margin-left: 15px;
    }
}

@media (min-width: 992px) {
    .hero .container {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-content {
        flex: 1;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
