* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --rose: #e8b4b8;
    --rose-dark: #d4919a;
    --dark: #1a1a1a;
    --dark-soft: #2d2d2d;
    --cream: #faf8f5;
    --text: #333;
    --text-light: #666;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: var(--cream);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: white !important;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 500;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 168, 76, 0.4);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8% 80px;
    background: linear-gradient(135deg, var(--cream) 0%, #fff 50%, var(--rose) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 1;
}

.hero-tagline {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gold);
    border-radius: 30px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--rose-dark);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.book-mockup {
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.book-mockup:hover {
    transform: translateY(-10px) rotate(2deg);
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Contrast Section */
.contrast-section {
    padding: 100px 8%;
    background: white;
}

.contrast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contrast-card {
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.contrast-card.before {
    background: linear-gradient(135deg, #fdf6f7 0%, var(--rose) 100%);
}

.contrast-card.after {
    background: linear-gradient(135deg, #f9f7f2 0%, var(--gold-light) 100%);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.before .card-icon {
    background: var(--rose-dark);
    color: white;
}

.after .card-icon {
    background: var(--gold);
    color: white;
}

.contrast-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contrast-card > p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.contrast-card ul {
    list-style: none;
}

.contrast-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.contrast-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.before li::before {
    background: var(--rose-dark);
}

.after li::before {
    background: var(--gold);
}

/* Story Section */
.story-section {
    padding: 100px 8%;
    background: var(--cream);
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    margin: 1rem auto 0;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.story-content blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--dark);
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--gold);
    background: white;
    border-radius: 0 10px 10px 0;
}

/* Quote Banner */
.quote-banner {
    padding: 80px 8%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    text-align: center;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.quote-banner p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: white;
    font-style: italic;
    line-height: 1.8;
}

/* Themes Section */
.themes-section {
    padding: 100px 8%;
    background: white;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.theme-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--cream);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.theme-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.theme-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.theme-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 8%;
    background: linear-gradient(135deg, var(--rose) 0%, var(--gold-light) 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    padding: 3rem 8%;
    background: var(--dark);
    text-align: center;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem !important;
    color: var(--gold) !important;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 100px 5% 60px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        margin-bottom: 2rem;
    }

    .book-mockup {
        max-width: 280px;
    }

    .contrast-grid {
        grid-template-columns: 1fr;
    }

    .themes-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}
