/* Landing Page Styles - Wedding Focused Design */

/* Brand Fonts: DM Sans for body, Fraunces for headings */
body.landing-page {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* Hero Section - Soft, Romantic Wedding Theme */
.hero-section {
    min-height: 650px;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE4E9 50%, #FFF0F3 100%);
    color: #2d3748;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.hero-section::before {
    content: '♥';
    position: absolute;
    font-size: 20rem;
    color: rgba(236, 72, 153, 0.03);
    top: -80px;
    right: -50px;
    transform: rotate(15deg);
    font-family: serif;
}

.hero-section::after {
    content: '✿';
    position: absolute;
    font-size: 15rem;
    color: rgba(236, 72, 153, 0.04);
    bottom: -60px;
    left: -40px;
    font-family: serif;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a202c;
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.02em;
}

.hero-title strong {
    font-weight: 600;
    color: var(--color-accent-primary);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
}

.hero-cta {
    gap: 1.25rem;
}

.btn-hero {
    padding: 1.125rem 2.75rem;
    font-size: 1.125rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.01em;
}

.btn-hero-primary {
    background: var(--color-accent-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(31, 181, 232, 0.3);
}

.btn-hero-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 181, 232, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: white;
    color: var(--color-accent-primary);
    border: 2px solid var(--color-accent-primary);
}

.btn-hero-secondary:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

.hero-check-item {
    color: #4a5568;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-weight: 400;
}

.hero-check-item i {
    color: var(--color-accent-primary);
    font-size: 1.125rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 4rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid #f7fafc;
    background: #fafafa;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(31, 181, 232, 0.15);
    border-color: var(--color-accent-light);
    background: white;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-accent-primary) 0%, var(--color-accent-hover) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 20px rgba(31, 181, 232, 0.25);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
    font-family: 'Fraunces', Georgia, serif;
}

.feature-description {
    color: #718096;
    line-height: 1.7;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fafafa 0%, white 100%);
}

.step-container {
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-accent-primary) 0%, var(--color-accent-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(31, 181, 232, 0.3);
    font-family: 'Fraunces', Georgia, serif;
}

.step-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a202c;
    font-family: 'Fraunces', Georgia, serif;
}

.step-description {
    color: #718096;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE4E9 100%);
    color: #1a202c;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '♥';
    position: absolute;
    font-size: 15rem;
    color: rgba(236, 72, 153, 0.05);
    top: -40px;
    left: 10%;
    font-family: serif;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Fraunces', Georgia, serif;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    z-index: 1;
}

.cta-section .btn-hero-primary {
    position: relative;
    z-index: 1;
}

/* Footer */
.landing-footer {
    background: white;
    color: #2d3748;
    padding: 70px 0 35px;
    border-top: 1px solid #e2e8f0;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
    font-family: 'Fraunces', Georgia, serif;
}

.footer-description {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-family: 'DM Sans', sans-serif;
}

.footer-link {
    color: #718096;
    text-decoration: none;
    display: block;
    margin-bottom: 0.875rem;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--color-accent-primary);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .footer-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f7fafc;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.footer-social .footer-link:hover {
    background: var(--color-accent-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 2.5rem;
    margin-top: 3.5rem;
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

.footer-heart {
    color: #fc8181;
    display: inline-block;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

/* Hero Mockup */
.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-mockup {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.mockup-phone {
    background: #1a202c;
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    background: white;
    border-radius: 24px;
    width: 280px;
    height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE4E9 100%);
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.phone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 4px;
    flex: 1;
    background: #f7fafc;
}

.grid-photo {
    aspect-ratio: 1;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.phone-upload-btn {
    background: var(--color-accent-primary);
    color: white;
    padding: 16px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
}

.mockup-qr {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.qr-code-placeholder {
    width: 120px;
    height: 120px;
    background: white;
    border: 3px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation - Match App Navbar */
.landing-nav {
    background-color: var(--color-bg-primary) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.landing-nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-primary) !important;
    transition: color var(--transition-fast);
    text-decoration: none;
    font-family: 'Fraunces', Georgia, serif !important;
}

.landing-nav-brand:hover {
    color: var(--color-accent-hover) !important;
}

.landing-nav-brand span {
    letter-spacing: -0.02em;
}

.landing-nav-link {
    font-weight: 500;
    color: var(--color-text-primary) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.landing-nav-link:hover {
    color: var(--color-accent-primary) !important;
    background-color: var(--color-accent-light);
}

.landing-nav .navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: var(--radius-md);
}

.landing-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem var(--color-accent-light);
}

/* About Page Styles */
.about-hero-section {
    min-height: 300px;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE4E9 50%, #FFF0F3 100%);
    color: #2d3748;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '♥';
    position: absolute;
    font-size: 15rem;
    color: rgba(236, 72, 153, 0.03);
    top: -60px;
    right: 10%;
    transform: rotate(15deg);
    font-family: serif;
}

.story-section {
    padding: 80px 0;
    background: white;
}

.story-card {
    background: #fafafa;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.story-image-placeholder {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE4E9 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-names {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-accent-primary);
    font-family: 'Fraunces', Georgia, serif;
}

.story-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a202c;
    font-family: 'Fraunces', Georgia, serif;
}

.story-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.mission-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, white 0%, #fafafa 100%);
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 80px 0;
    background: white;
}

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    background: #fafafa;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(31, 181, 232, 0.15);
    background: white;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-accent-primary) 0%, var(--color-accent-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 16px rgba(31, 181, 232, 0.25);
}

.value-icon i {
    font-size: 1.75rem;
    color: white;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
    font-family: 'Fraunces', Georgia, serif;
}

.value-description {
    color: #718096;
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-family: 'Fraunces', Georgia, serif;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-accent-primary);
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    background: transparent;
}

.accordion-item:first-of-type {
    border-top: 1px solid #e2e8f0;
}

.accordion-button {
    background: transparent;
    color: #1a202c;
    font-size: 1.0625rem;
    font-weight: 600;
    padding: 1.25rem 1rem;
    border: none;
    box-shadow: none;
    font-family: 'DM Sans', sans-serif;
}

.accordion-button:not(.collapsed) {
    background: #fafafa;
    color: var(--color-accent-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231FB5E8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231FB5E8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem 1rem 1.5rem;
    color: #4a5568;
    line-height: 1.75;
    font-size: 1rem;
    background: #fafafa;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        padding: 1rem 2rem;
    }

    .hero-check-item {
        font-size: 0.875rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 1.875rem;
    }
}
