/* ========================================
   Home Page Styles
   ======================================== */

/* --- What Is Section --- */
.what-is {
    padding: var(--space-4xl) 0;
}

.what-is__content h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-lg);
}

.what-is__content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.what-is__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-gold-gradient);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-is__image img {
    width: 70%;
}

/* --- Services Grid --- */
.services {
    background: var(--color-white);
    padding: var(--space-4xl) 0;
}

.services .card {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
}

.services .card__icon {
    width: 90px;
    height: 90px;
}

/* --- App Download Section --- */
.app-download {
    padding: var(--space-4xl) 0;
}

.app-download__mockup {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-lighter) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.app-download__mockup-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--font-size-lg);
    text-align: center;
}

.app-download__info h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-lg);
}

.app-download__features {
    margin-bottom: var(--space-xl);
}

.app-download__feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    color: var(--color-text-light);
}

.app-download__feature svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold-dark);
    flex-shrink: 0;
}

.app-download__badges {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* --- Clubs Preview (Gold section) --- */
.clubs-preview {
    padding: var(--space-4xl) 0;
    text-align: center;
}

.clubs-preview h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
}

.clubs-preview p {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    font-size: var(--font-size-md);
}

/* --- Testimonials --- */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.testimonial-card {
    padding: var(--space-2xl);
    text-align: center;
}

.testimonial-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-gold-gradient);
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-xl);
    color: var(--color-text);
}

.testimonial-card__quote {
    font-style: italic;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.testimonial-card__name {
    font-weight: 700;
    color: var(--color-text);
}

.testimonial-card__role {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* --- Featured Clubs (API) --- */
.featured-clubs {
    padding: var(--space-4xl) 0;
}

.club-card {
    overflow: hidden;
    padding: 0;
}

.club-card__image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #E8E8E8 0%, #D0D0D0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.club-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-card__body {
    padding: var(--space-lg);
}

.club-card__name {
    font-size: var(--font-size-md);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.club-card__location {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.club-card__location svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Loading / placeholder for API clubs */
.clubs-loading {
    text-align: center;
    padding: var(--space-2xl);
    color: var(--color-text-muted);
}

.clubs-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

/* --- Social / Press Section --- */
.social-press {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
    text-align: center;
}

.social-press__instagram {
    margin-bottom: var(--space-2xl);
}

.social-press__instagram a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text);
    font-weight: 600;
    font-size: var(--font-size-md);
    transition: color var(--transition-fast);
}

.social-press__instagram a:hover {
    color: var(--color-gold-dark);
}

.social-press__instagram svg {
    width: 24px;
    height: 24px;
}

/* --- Final CTA --- */
.final-cta {
    padding: var(--space-4xl) 0;
    text-align: center;
}

.final-cta h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-md);
}

.final-cta p {
    max-width: 500px;
    margin: 0 auto var(--space-xl);
    font-size: var(--font-size-md);
}

.final-cta__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   HOME - Responsive Tablet
   ======================================== */
@media (max-width: 1024px) {
    .what-is__content h2,
    .app-download__info h2,
    .clubs-preview h2,
    .final-cta h2 {
        font-size: var(--font-size-2xl);
    }

    .services .card {
        padding: var(--space-xl) var(--space-lg);
    }

    .services .card__icon {
        width: 72px;
        height: 72px;
    }

    .app-download__mockup {
        min-height: 300px;
    }

    .testimonial-card {
        padding: var(--space-xl);
    }
}

/* ========================================
   HOME - Responsive Mobile
   ======================================== */
@media (max-width: 768px) {
    .what-is {
        padding: var(--space-2xl) 0;
    }

    .what-is__content h2 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-md);
    }

    .what-is__image {
        aspect-ratio: 16/9;
    }

    .services {
        padding: var(--space-2xl) 0;
    }

    .services .card {
        padding: var(--space-lg);
    }

    .services .card__icon {
        width: 60px;
        height: 60px;
    }

    .app-download {
        padding: var(--space-2xl) 0;
    }

    .app-download__mockup {
        min-height: 250px;
        padding: var(--space-lg);
    }

    .app-download__info h2 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-md);
    }

    .clubs-preview {
        padding: var(--space-2xl) 0;
    }

    .clubs-preview h2 {
        font-size: var(--font-size-xl);
    }

    .clubs-preview p {
        font-size: var(--font-size-base);
    }

    .testimonials {
        padding: var(--space-2xl) 0;
    }

    .testimonial-card {
        padding: var(--space-lg);
    }

    .testimonial-card__avatar {
        width: 52px;
        height: 52px;
        font-size: var(--font-size-lg);
    }

    .testimonial-card__quote {
        font-size: var(--font-size-sm);
    }

    .club-card__image {
        height: 150px;
    }

    .club-card__body {
        padding: var(--space-md);
    }

    .featured-clubs {
        padding: var(--space-2xl) 0;
    }

    .social-press {
        padding: var(--space-xl) 0;
    }

    .final-cta {
        padding: var(--space-2xl) 0;
    }

    .final-cta h2 {
        font-size: var(--font-size-xl);
    }

    .final-cta p {
        font-size: var(--font-size-base);
    }

    .final-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   HOME - Responsive Small Phones
   ======================================== */
@media (max-width: 480px) {
    .what-is__content h2,
    .app-download__info h2,
    .clubs-preview h2,
    .final-cta h2 {
        font-size: var(--font-size-lg);
    }

    .app-download__mockup {
        min-height: 200px;
    }

    .app-download__badges {
        flex-direction: column;
        align-items: center;
    }

    .social-press__instagram a {
        font-size: var(--font-size-base);
    }
}
