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

html, body {
    width: 100%;
    height: 100%;
}

/* ===== VARIABLES ===== */
:root {
    --color-deep-navy: #0A0E1A;
    --color-darker-navy: #050508;
    --color-dark-indigo: #0F1629;
    --color-wine: #8B3A62;
    --color-petal-pink: #D4A5B9;
    --color-cream: #E8D5C4;
    --color-midnight: #0A0A14;
    --color-slate: #1A2A52;
    --color-navy-accent: #141E3C;
    --color-text: #E8D5C4;
    --color-text-dim: rgba(212, 165, 185, 0.6);

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;
    --font-mono: 'IBM Plex Mono', monospace;
}

/* ===== TYPOGRAPHY ===== */
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: linear-gradient(180deg, var(--color-deep-navy) 0%, var(--color-darker-navy) 50%, var(--color-midnight) 100%);
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 1.5em;
}

h2 {
    font-size: 2.5rem;
    color: var(--color-petal-pink);
    font-weight: 600;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: 1.5em;
    line-height: 1.9;
    color: var(--color-text);
}

/* ===== HERO SECTION ===== */
.hero {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-slate) 0%, var(--color-dark-indigo) 50%, var(--color-deep-navy) 100%);
}

.petals-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.6;
}

.petal {
    transition: transform 0.3s ease-out;
    transform-origin: 500px 500px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--color-petal-pink);
    text-shadow: 0 0 60px rgba(212, 165, 185, 0.2);
    animation: fadeInUp 1.2s ease-out;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-dim);
    margin-top: 2rem;
    letter-spacing: 0.08em;
    font-style: italic;
    animation: fadeInUp 1.5s ease-out 0.2s both;
}

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

/* ===== SECTIONS ===== */
.section {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.section-first {
    background: linear-gradient(135deg, var(--color-dark-indigo) 0%, var(--color-navy-accent) 50%, var(--color-deep-navy) 100%);
}

.section-second {
    background: linear-gradient(135deg, var(--color-deep-navy) 0%, var(--color-midnight) 100%);
}

.section-third {
    background: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-deep-navy) 100%);
}

.section-fourth {
    background: linear-gradient(135deg, var(--color-deep-navy) 0%, var(--color-darker-navy) 100%);
}

.section-fifth {
    background: linear-gradient(135deg, var(--color-darker-navy) 0%, var(--color-deep-navy) 100%);
}

.section-closing {
    background: linear-gradient(135deg, var(--color-deep-navy) 0%, var(--color-midnight) 100%);
    padding-bottom: 8rem;
}

.section-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: var(--color-petal-pink);
    font-weight: 600;
    text-transform: none;
}

.section-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.95;
    color: var(--color-text);
    margin-bottom: 1.8em;
}

.section-coda {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-petal-pink);
    text-align: center;
    margin-top: 3rem;
    letter-spacing: 0.08em;
}

/* ===== SVG BOTANICAL ART ===== */
.botanical-svg {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 2.5rem auto;
    display: block;
    opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .section-coda {
        font-size: 1.3rem;
    }
}

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

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* ===== SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}

/* ===== ANIMATIONS ===== */
@keyframes floatPetal {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.25;
    }
}

.petal {
    animation: floatPetal 8s ease-in-out infinite;
}
