/**
 * Landing Page Styles
 * Specific styles for the main landing page - ZocDoc inspired
 */

/* ============================================
   LANDING SECTIONS
   ============================================ */
.landing-section {
    padding: 5rem 0;
}

.landing-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D2D32;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.landing-section__subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #2D2D32 0%, #1a1a1d 100%);
    padding: 4rem 0;
}

.stat-item {
    padding: 1.5rem;
}

.stat-item__number {
    font-size: 3rem;
    font-weight: 700;
    color: #FEF04B;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item__label {
    font-size: 1rem;
    color: #D1D5DB;
    font-weight: 500;
}

/* ============================================
   APP PROMO SECTION
   ============================================ */
.app-promo {
    background: #FFF9EA;
    padding: 5rem 0;
    overflow: hidden;
}

.app-promo__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D2D32;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.app-promo__subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.app-store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #2D2D32;
    color: #FFFFFF;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.app-badge:hover {
    background: #1a1a1d;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.app-badge svg {
    flex-shrink: 0;
}

.app-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-badge__small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-badge__large {
    font-size: 1rem;
    font-weight: 600;
}

.app-promo__mockup {
    position: relative;
}

.phone-mockup {
    max-width: 240px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991px) {
    .landing-section {
        padding: 4rem 0;
    }

    .landing-section__title {
        font-size: 2rem;
    }

    .app-promo__title {
        font-size: 2rem;
    }

    .stat-item__number {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .landing-section {
        padding: 3rem 0;
    }

    .landing-section__title {
        font-size: 1.75rem;
    }

    .app-promo {
        padding: 3rem 0;
    }

    .app-promo__title {
        font-size: 1.75rem;
    }

    .app-store-badges {
        justify-content: center;
    }

    .phone-mockup {
        max-width: 180px;
    }

    .stat-item__number {
        font-size: 1.75rem;
    }

    .stat-item__label {
        font-size: 0.875rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-cream {
    background-color: #FFF9EA;
}

.bg-white {
    background-color: #FFFFFF;
}