/* Thanksgiving Landing Page Styles */

/* Warm Thanksgiving Color Palette Variables */
:root {
    --deep-brown: #3E2723;
    --warm-brown: #5D4037;
    --burnt-orange: #E65100;
    --pumpkin-orange: #FF6F00;
    --golden-yellow: #FFA000;
    --harvest-gold: #FFB300;
    --cranberry-red: #C62828;
    --sage-green: #689F38;
    --cream: #FFF8E1;
    --warm-cream: #FFFBF0;
    --soft-brown: #6D4C41;
    --autumn-amber: #FF8F00;
    --rich-mahogany: #4E342E;
}

/* 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(--cream);
    background: linear-gradient(135deg, var(--rich-mahogany) 0%, var(--deep-brown) 100%);
    overflow-x: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 248, 225, 0.9);
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--cream);
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 248, 225, 0.85);
    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(--cream);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1rem;
    color: rgba(255, 248, 225, 0.8);
    line-height: 1.7;
}

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

/* Hero Section - Warm Thanksgiving Glow */
.hero {
    background: linear-gradient(135deg, var(--rich-mahogany) 0%, var(--deep-brown) 50%, var(--warm-brown) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 160, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    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="autumn-leaves" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(255,111,0,0.1)"/><circle cx="15" cy="10" r="0.3" fill="rgba(198,40,40,0.08)"/><circle cx="10" cy="15" r="0.4" fill="rgba(255,160,0,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23autumn-leaves)"/></svg>') repeat;
    opacity: 0.5;
    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: linear-gradient(135deg, var(--soft-brown) 0%, var(--warm-brown) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--harvest-gold);
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 160, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 160, 0, 0.3);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.1) brightness(0.9) saturate(1.1);
}

/* 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.3));
}

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

.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.3);
    background: var(--cream);
    padding: 8px;
}

.qr-text {
    font-size: 0.9rem;
    color: rgba(255, 248, 225, 0.8);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Section Styles with Warm Autumn Lighting */
section {
    padding: 80px 0;
    position: relative;
}

.section-two {
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--deep-brown) 100%);
    position: relative;
}

.section-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 111, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-two .image-placeholder img, .section-four .image-placeholder img, .section-six .image-placeholder img, .section-seven .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.1) brightness(0.9) saturate(1.15);
}

.section-three {
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--rich-mahogany) 50%, var(--warm-brown) 100%);
    position: relative;
}

.section-three::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(198, 40, 40, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.section-four {
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--soft-brown) 100%);
    position: relative;
}

.section-four::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 160, 0, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.section-five {
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--pumpkin-orange) 50%, var(--burnt-orange) 100%);
    color: var(--cream);
    position: relative;
}

.section-five::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 179, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.section-five .section-title,
.section-five .section-subtitle {
    color: var(--cream);
    position: relative;
    z-index: 2;
}

.section-six {
    background: linear-gradient(135deg, var(--rich-mahogany) 0%, var(--deep-brown) 100%);
    position: relative;
}

.section-six::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 111, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.section-seven::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(198, 40, 40, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-eight {
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--soft-brown) 100%);
    position: relative;
}

.section-eight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 160, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.section-nine {
    background: linear-gradient(135deg, var(--harvest-gold) 0%, var(--golden-yellow) 50%, var(--harvest-gold) 100%);
    position: relative;
    color: var(--deep-brown);
}

.section-nine::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="harvest-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(62,39,35,0.1)"/><circle cx="20" cy="15" r="0.5" fill="rgba(62,39,35,0.15)"/><circle cx="15" cy="20" r="0.8" fill="rgba(62,39,35,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23harvest-pattern)"/></svg>') repeat;
    opacity: 0.6;
    pointer-events: none;
}

.section-nine .section-title,
.section-nine .section-subtitle {
    color: var(--deep-brown);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 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: linear-gradient(135deg, var(--soft-brown) 0%, var(--warm-brown) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 160, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 160, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 111, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 160, 0, 0.25);
}

.feature-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--harvest-gold), var(--golden-yellow));
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(255, 160, 0, 0.3);
}

.icon-placeholder::before {
    content: '🦃';
    font-size: 2rem;
}

/* 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: linear-gradient(135deg, var(--soft-brown) 0%, var(--warm-brown) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 160, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 160, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-item-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at left center, rgba(255, 111, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.feature-item-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 160, 0, 0.25);
}

.feature-icon-large {
    font-size: 4rem;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--harvest-gold), var(--golden-yellow));
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 160, 0, 0.3);
    position: relative;
    z-index: 2;
}

.feature-title-simple {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--cream);
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

/* Steps List */
.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, 248, 225, 0.1);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 160, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 160, 0, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.step-item-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 160, 0, 0.25);
}

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

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

.single-image .image-placeholder {
    max-width: 600px;
    height: 400px;
    background: linear-gradient(135deg, var(--soft-brown) 0%, var(--warm-brown) 100%);
    border: 1px solid rgba(255, 160, 0, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 160, 0, 0.15);
}

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

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    text-align: left;
    position: relative;
    z-index: 2;
}

.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: rgba(255, 248, 225, 0.85);
}

.content-body p {
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-left: 1rem;
    border-left: 3px solid var(--harvest-gold);
}

.content-body p:last-child {
    margin-bottom: 0;
}

.content-visual .image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--soft-brown) 0%, var(--warm-brown) 100%);
    border: 1px solid rgba(255, 160, 0, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 160, 0, 0.15);
}

/* 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);
}

.content-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, var(--rich-mahogany) 0%, var(--deep-brown) 100%);
    padding: 80px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 160, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.faq-item {
    background: linear-gradient(135deg, var(--soft-brown) 0%, var(--warm-brown) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 160, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 160, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at left center, rgba(255, 111, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 160, 0, 0.25);
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 248, 225, 0.85);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* 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;
    }
    
    .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-grid.reverse {
        direction: ltr;
    }
    
    .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;
    }
    
    .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;
}

footer {
    color: white;
}

/* Enhanced hover effects with warm autumn feel */
@media (hover: hover) {
    .feature-item:hover .icon-placeholder {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 30px rgba(255, 160, 0, 0.4);
    }
    
    .single-image:hover .image-placeholder {
        transform: scale(1.02);
        box-shadow: 
            0 30px 60px rgba(0, 0, 0, 0.4),
            0 0 40px rgba(255, 160, 0, 0.2);
    }
}

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

/* Print styles */
@media print {
    .download-buttons,
    .qr-code-container {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        background: white !important;
        padding: 40px 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
    }
}
