/* ==========================================================================
   Natali Productions - Kantia's Personal Brand
   ========================================================================== */

/* CSS Variables - Kantia's Palette */
:root {
    --color-primary: #E8B4B8;        /* Rose Gold */
    --color-secondary: #5D3A6A;      /* Deep Plum */
    --color-accent-1: #D4AF7A;       /* Champagne Gold */
    --color-accent-2: #FF6B7A;       /* Coral Pink */
    --color-accent-3: #2D1B2E;       /* Midnight Purple */
    --color-bg-light: #FAF8F5;       /* Warm Cream */
    --color-bg-card: #FFFFFF;        /* Pure White for cards */
    --color-text-primary: #2C2C2C;   /* Charcoal */
    --color-text-muted: #6B6B6B;     /* Medium Gray */
    --color-blush: #F4E5E7;          /* Soft Blush */

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --shadow-soft: 0 4px 20px rgba(93, 58, 106, 0.08);
    --shadow-medium: 0 8px 30px rgba(93, 58, 106, 0.12);
    --shadow-strong: 0 15px 50px rgba(93, 58, 106, 0.18);
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */

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

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

body {
    font-family: var(--font-primary);
    background: var(--color-bg-light);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ==========================================================================
   Language Toggle
   ========================================================================== */

.lang-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    box-shadow: var(--shadow-soft);
}

.lang-toggle-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.lang-toggle-btn:hover {
    color: var(--color-secondary);
    background: var(--color-blush);
}

.lang-toggle-btn.active {
    color: var(--color-secondary);
    background: var(--color-primary);
}

.lang-separator {
    color: var(--color-primary);
    opacity: 0.5;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .lang-toggle {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .lang-toggle-btn {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-bg-light) 50%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(232, 180, 184, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(93, 58, 106, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(212, 175, 122, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-2) 100%);
    color: white;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-bounce);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-strong);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease-out 1s both;
}

.scroll-indicator span {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 2rem;
    color: var(--color-primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   Typography
   ========================================================================== */

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-secondary);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
}

.lead {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.about-text strong {
    color: var(--color-secondary);
    font-weight: 700;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services {
    background: var(--color-blush);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--color-primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Experience Section
   ========================================================================== */

.experience {
    background: white;
}

.experience-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: var(--color-blush);
    border-radius: 16px;
    border-left: 4px solid var(--color-primary);
    transition: var(--transition-smooth);
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
}

.experience-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.experience-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.experience-content p {
    color: var(--color-text-muted);
    font-weight: 600;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-3) 100%);
    color: white;
    text-align: center;
}

.contact .section-title {
    color: white;
}

.contact-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-methods {
    margin: 3rem 0;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-strong);
}

.contact-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-button svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.contact-note {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: 3rem 0;
    text-align: center;
    background: var(--color-accent-3);
    color: white;
}

.footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    margin: 1rem 0;
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .stats {
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .experience-item {
        flex-direction: column;
        text-align: center;
    }

    .scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
