/*
Theme Name: Hello Elementor Child (GWWA)
Description: Professional Arena Elite Child Theme for Gomez Western Wear Arena.
Author: Seven Oh Design Studio
Template: hello-elementor
Version: 1.0.0
*/

/* MOBILE FIRST POSTER STYLES */
.gwwa-hero__poster,
.gwwa-event-card__image {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3; /* Mobile default: portrait-ish for better thumb focus */
    transition: aspect-ratio 0.4s ease;
}

@media (min-width: 768px) {
    .gwwa-hero__poster,
    .gwwa-event-card__image {
        aspect-ratio: 16 / 9; /* Tablet: cinematic standard */
    }
}

@media (min-width: 1280px) {
    .gwwa-hero__poster {
        aspect-ratio: 21 / 9; /* Desktop: Ultra-wide cinematic elite */
        max-height: 650px;
    }
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY: APPLE HIG / SAN FRANCISCO
   ───────────────────────────────────────────── */
.gwwa-event-hero__title,
.gwwa-events-card__title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    text-transform: none;
}

/* ─────────────────────────────────────────────
   OVERLAYS: CINEMATIC GRADIENT
   ───────────────────────────────────────────── */
/* For the Hero Section */
.gwwa-event-hero__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%) !important;
}

/* For the Event Card Poster Area */
.gwwa-events-card__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* ─────────────────────────────────────────────
   BUTTONS: TONAL GOLD (#d4af37)
   ───────────────────────────────────────────── */
.gwwa-btn--primary,
.gwwa-events-btn {
    background-color: #d4af37 !important;
    color: #000000 !important;
    border: none !important;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease !important;
    box-shadow: 0 4px 14px 0 rgba(212, 175, 55, 0.39) !important;
}

.gwwa-btn--primary:hover,
.gwwa-events-btn:hover {
    background-color: #c5a02c !important;
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5) !important;
}

/* ─────────────────────────────────────────────
   LANGUAGE BADGE PILL (Top Right)
   ───────────────────────────────────────────── */
.gwwa-badge--lang {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(0, 0, 0, 0.85);
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 12px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    z-index: 5;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

/* Bilingual Variant: Arena Elite Gold */
.gwwa-badge--lang.is-bilingual {
    background-color: #d4af37;
    color: #000000;
    border-color: rgba(0, 0, 0, 0.1);
}

.gwwa-events-card:hover .gwwa-badge--lang {
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   FOOTER SPONSORS LOGO BAR
   ───────────────────────────────────────────── */
.gwwa-footer__sponsors {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 24px;
    flex-wrap: wrap;
    background-color: transparent;
}

.gwwa-footer__sponsors img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    user-select: none;
}

.gwwa-footer__sponsors img:hover {
    filter: grayscale(0%) opacity(1) drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gwwa-footer__sponsors {
        gap: 25px;
        padding: 40px 16px;
    }
    
    .gwwa-footer__sponsors img {
        max-height: 30px;
    }
}


/* ─────────────────────────────────────────────
   SPONSOR / PARTNER LABEL
   ───────────────────────────────────────────── */
.gwwa-sponsor-label {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}


/* ─────────────────────────────────────────────
   HEADER UI ENHANCEMENTS
   ───────────────────────────────────────────── */
.gwwa-header__logo img,
.site-logo img,
.custom-logo-link img {
    max-height: 60px !important;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.gwwa-header__logo img:hover,
.site-logo img:hover,
.custom-logo-link img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .gwwa-header__logo img,
    .site-logo img,
    .custom-logo-link img {
        max-height: 45px !important;
    }
}

/* ─────────────────────────────────────────────
   PERFORMANCE: GPU ACCELERATION FOR REVEALS
   ───────────────────────────────────────────── */
.gwwa-events-card {
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
}


/* ─────────────────────────────────────────────
   PERFORMANCE: GPU ACCELERATION FOR REVEALS
   ───────────────────────────────────────────── */
.gwwa-events-card {
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
}



