/* Romantic Dinner Landing Page Styles */

/* Color Palette Variables */
:root {
    --soft-rose: #F4E4E6;
    --warm-gold: #D4AF37;
    --off-white: #FEFCF8;
    --charcoal: #2C2C2C;
    --deep-rose: #E8C5C8;
    --light-gold: #F5E6A3;
    --warm-white: #FFF9F5;
    --soft-charcoal: #4A4A4A;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--off-white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--soft-charcoal);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    color: var(--soft-charcoal);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--soft-charcoal);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: var(--soft-charcoal);
    line-height: 1.7;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--soft-rose) 0%, var(--deep-rose) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,3 7,1 5,3 C3,1 0,3 0,6 C0,10 5,14 10,18 C15,14 20,10 20,6 C20,3 17,1 15,3 C13,1 10,3 10,6 Z" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: var(--warm-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-buttons-mobile {
    display: none;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.download-btn:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}

.download-btn img {
    height: 50px;
}

.qr-code-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 2rem;
}

.qr-code {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 8px;
}

.qr-text {
    font-size: 0.9rem;
    color: var(--soft-charcoal);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-two {
    background: var(--warm-white);
}

.section-two .image-placeholder img, .section-four .image-placeholder img, .section-six .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-three {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--warm-white) 100%);
}

.section-four {
    background: var(--soft-rose);
}

.section-five {
    background: linear-gradient(135deg, var(--warm-gold) 0%, var(--light-gold) 100%);
    color: var(--charcoal);
}

.section-five .section-title,
.section-five .section-subtitle {
    color: var(--charcoal);
}

.section-six {
    background: var(--warm-white);
}

.section-seven {
    background: linear-gradient(135deg, var(--deep-rose) 0%, var(--soft-rose) 100%);
    position: relative;
}

.section-seven::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkles" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(212,175,55,0.3)"/><circle cx="20" cy="15" r="0.5" fill="rgba(212,175,55,0.4)"/><circle cx="15" cy="20" r="0.8" fill="rgba(212,175,55,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23sparkles)"/></svg>') repeat;
    opacity: 0.6;
    pointer-events: none;
}

/* Photo Duo */
.photo-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.photo-item .image-placeholder {
    height: 350px;
    background: var(--warm-gold);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--warm-gold), var(--light-gold));
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-placeholder::before {
    content: '♥';
    font-size: 2rem;
    color: var(--charcoal);
}

/* Vertical Features List */
.features-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item-vertical {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-item-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon-large {
    font-size: 4rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--warm-gold), var(--light-gold));
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.feature-title-simple {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0;
    text-align: left;
}

/* Steps List (Similar to Features but without icons) */
.steps-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.step-item-vertical {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.step-item-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-title-simple {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--charcoal);
    margin: 0;
    text-align: center;
}

/* Single Image */
.single-image {
    display: flex;
    justify-content: center;
}

.single-image .image-placeholder {
    max-width: 600px;
    height: 400px;
    background: var(--warm-gold);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text {
    text-align: left;
}

.content-text .section-title,
.content-text .section-subtitle {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--soft-charcoal);
}

.content-visual .image-placeholder {
    height: 400px;
    background: var(--warm-gold);
}

/* CTA Sections */
.cta-content,
.final-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Scroll Animations */
.section-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-item,
.feature-item-vertical,
.step-item-vertical,
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.animate-in .feature-item,
.section-animate.animate-in .feature-item-vertical,
.section-animate.animate-in .step-item-vertical,
.section-animate.animate-in .faq-item {
    opacity: 1;
    transform: translateY(0);
}

.photo-item {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.animate-in .photo-item {
    opacity: 1;
    transform: scale(1);
}

.source-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.source-link:hover {
    text-decoration: underline;
}

.sources-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    margin-top: 0;
    border-top: 1px solid #e9ecef;
}

.sources-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.sources-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.source-item {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.source-number {
    font-weight: 600;
    color: #007bff;
    margin-right: 10px;
}

.source-link-full {
    color: #007bff;
    text-decoration: none;
    word-break: break-all;
}

.source-link-full:hover {
    text-decoration: underline;
}

.source-description {
    margin-top: 8px;
    color: #6c757d;
    font-size: 14px;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    background: var(--warm-white);
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--soft-charcoal);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .photo-duo {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-list-vertical {
        gap: 2rem;
    }
    
    .feature-item-vertical {
        flex-direction: row;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .feature-icon-large {
        font-size: 3rem;
        width: 100px;
        height: 100px;
    }
    
    .feature-title-simple {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .steps-list-vertical {
        gap: 2rem;
    }
    
    .step-item-vertical {
        padding: 1.5rem;
    }
    
    .step-title-simple {
        font-size: 1.2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-text .section-title,
    .content-text .section-subtitle {
        text-align: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .qr-code-container {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .download-buttons-mobile {
        display: flex !important;
        margin-bottom: 2rem;
    }
    
    .download-buttons-desktop {
        display: none;
    }
    
    .download-btn img {
        height: 45px;
    }
    
    .image-placeholder {
        height: 250px;
    }
    
    .photo-item .image-placeholder {
        height: 280px;
    }
    
    .single-image .image-placeholder {
        height: 300px;
    }
    
    .content-visual .image-placeholder {
        height: 300px;
    }
    
    .faq-list {
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 1rem;
    }
}

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

/* Enhanced hover effects */
@media (hover: hover) {
    .feature-item:hover .icon-placeholder {
        transform: scale(1.1) rotate(5deg);
    }
    
    .photo-item:hover .image-placeholder {
        transform: scale(1.05);
    }
    
    .single-image:hover .image-placeholder {
        transform: scale(1.02);
    }
}

/* Focus states for accessibility */
.download-btn:focus {
    outline: 3px solid var(--warm-gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .download-buttons,
    .qr-code-container {
        display: none;
    }
    
    body {
        background: white;
    }
    
    section {
        background: white !important;
        padding: 40px 0;
    }
}
