/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F8F6F3;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-headline {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.emphasis {
    font-weight: 600;
    color: #8B5A96;
}

/* Navigation */
.navbar {
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 196, 164, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(212, 196, 164, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
}

.cta-button-nav {
    background: #D4C4A4;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.cta-button-nav:hover {
    background: #C4B494;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 196, 164, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8F6F3 0%, #F0EDE8 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    line-height: 1.1;
}

.hero-headline .highlight {
    color: #8B5A96;
    font-weight: 700;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #666;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.cta-button-primary {
    background: #D4C4A4;
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button-primary:hover {
    background: #C4B494;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 196, 164, 0.4);
}

.cta-button-primary.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.cta-button-secondary {
    background: #8B5A96;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button-secondary:hover {
    background: #7a4f85;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 90, 150, 0.3);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: #E8E3DC;
}

.problem-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.problem-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Transformation Section */
.transformation-section {
    padding: 80px 0;
    background: #F8F6F3;
}

.transformation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.before, .after {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.before {
    border-left: 4px solid #e74c3c;
}

.after {
    border-left: 4px solid #27ae60;
}

.before h3, .after h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.transformation-list {
    list-style: none;
}

.transformation-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.transformation-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.transformation-list.success li::before {
    content: "✓";
    color: #27ae60;
}

.transformation-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Program Options */
.program-options {
    padding: 80px 0;
    background: #E8E3DC;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.option-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Featured card (12-week option) */
.option-card.featured {
    border: 3px solid #8B5A96;
    transform: scale(1.04);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4C4A4;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B5A96;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.option-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #8B5A96;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.option-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.result {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #8B5A96;
}

.options-note {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

/* Value Section */
.value-section {
    padding: 80px 0;
    background: #2c2c2c;
    color: white;
}

.value-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.value-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.value-question {
    font-size: 1.4rem;
    font-weight: 600;
    color: #D4C4A4;
    font-style: italic;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #F8F6F3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: #E8E3DC;
}

.guarantee-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.guarantee-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid #27ae60;
}

.guarantee-box p {
    margin-bottom: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B5A96 0%, #6a4575 100%);
    color: white;
    text-align: center;
}

.final-cta .section-headline {
    color: white;
}

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

.final-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.urgency {
    margin-top: 2rem;
    font-style: italic;
    color: #D4C4A4;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .section-headline {
        font-size: 2rem;
    }
    
    .problem-content,
    .transformation-grid,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .option-card.featured {
        transform: none;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-headline {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .option-card {
        padding: 2rem;
    }
    
    .cta-button-primary,
    .cta-button-secondary { 
        width: 100%; 
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button focus styles for accessibility */
.cta-button-primary:focus,
.cta-button-secondary:focus,
.cta-button-nav:focus {
    outline: 3px solid #8B5A96;
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * { 
        transition: none !important; 
        animation: none !important; 
    }
}

/* Sticky top spacing for in-page anchors */
:target { 
    scroll-margin-top: 90px; 
}
