/* Minimal Light Theme - Wedding Vision AI Inspired */

:root {
    --bg-primary: #f5f3f0;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --border-color: #e5e5e5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 2rem 40px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 400;
}

.description {
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.store-badge {
    display: inline-block;
}

.store-badge img {
    height: 50px;
    transition: transform 0.2s ease;
}

.store-badge:hover img {
    transform: scale(1.05);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
}

.phone-mockup img {
    width: auto;
    height: 600px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Screenshots Section */
.screenshots {
    background: #ffffff;
    padding: 100px 3rem;
    border-top: 1px solid var(--border-color);
}

.screenshots h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 4rem;
    line-height: 1.2;
}

.screenshots-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.screenshot-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.screenshot-card:hover {
    transform: scale(1.05);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
}

.screenshot-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
}

/* About Section */
.about {
    background: var(--bg-primary);
    padding: 100px 3rem;
    border-top: 1px solid var(--border-color);
}

.about h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.about-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 20px;
    font-weight: 600;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    background: #ffffff;
    padding: 100px 3rem;
    border-top: 1px solid var(--border-color);
}

.faq h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 18px;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Download/CTA Section */
.download {
    background: var(--bg-primary);
    padding: 100px 3rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.download-content h2 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.download-content p {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    padding: 4rem 3rem 3rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.footer-tagline {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 1.5rem 40px;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .tagline {
        font-size: 20px;
    }

    .description {
        font-size: 15px;
    }

    .phone-mockup img {
        height: 500px;
        max-width: 100%;
    }

    .screenshots,
    .about,
    .faq,
    .download {
        padding: 60px 1.5rem;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .download-buttons {
        gap: 1rem;
    }

    .footer-logo img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 1rem 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .tagline {
        font-size: 18px;
    }

    .description {
        font-size: 14px;
    }

    .store-badge img {
        height: 44px;
    }

    .phone-mockup img {
        height: 450px;
        max-width: 100%;
    }

    .screenshots,
    .about,
    .faq,
    .download {
        padding: 40px 1rem;
    }

    .download-buttons {
        flex-wrap: wrap;
    }
}
