/* ===== MOBILE EVENT BANNER STYLES ===== */
.mobile-event-banner {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    top: 90px !important;
    left: 1rem !important;
    right: 1rem !important;
    z-index: 100 !important;
    background: linear-gradient(135deg, #fbbd13 0%, #e6a800 0%, #ffd700 50%, #fbbd13 100%) !important;
    border: 3px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
    color: #2c3e50 !important;
    box-shadow: 0 15px 40px rgba(251, 189, 19, 0.4), 0 6px 20px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    animation: mobileBannerSlideIn 0.6s ease-out !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    cursor: pointer !important;
    overflow: hidden !important;
    max-width: 320px !important;
    margin: 0 auto !important;
}

.mobile-event-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.mobile-event-banner:hover::before {
    transform: translateX(100%);
}

.mobile-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.mobile-banner-icon {
    font-size: var(--font-size-5xl); /* 48px - Hero headings */
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.mobile-banner-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 0.8rem 0;
    color: #2c3e50;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.mobile-banner-text p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #34495e;
    line-height: 1.5;
    text-align: center;
    max-width: 280px;
}

.mobile-banner-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 1.3rem 3rem;
    text-decoration: none;
    border-radius: 35px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4), 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    min-width: 200px;
    text-align: center;
}

.mobile-banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.mobile-banner-cta:hover::before {
    left: 100%;
}

.mobile-banner-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.6);
    background: linear-gradient(135deg, #d63031 0%, #a93226 100%);
    border-color: rgba(255, 255, 255, 0.7);
}

.mobile-banner-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: #e74c3c;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.mobile-banner-close:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #e74c3c;
    color: #c0392b;
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.mobile-banner-close:active {
    transform: scale(0.9) rotate(90deg);
}

@keyframes mobileBannerSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== ULTRA-CLEAN MOBILE MENU STYLES ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Clean Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fbbd13;
}

.menu-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fbbd13;
    transform: scale(1.1);
}

/* Clean Navigation */
.mobile-nav {
    flex: 1;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 0.8rem;
}

.mobile-nav-list a {
    display: block;
    padding: 1.2rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 0.5px;
}

.mobile-nav-list a:hover {
    background: #fbbd13;
    color: #1a1a2e;
    border-color: #fbbd13;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 189, 19, 0.3);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
/* Hide on desktop */
@media (min-width: 501px) {
    .mobile-event-banner {
        display: none !important;
    }
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .mobile-event-banner {
        max-width: 280px !important;
        padding: 1.2rem !important;
        top: 80px !important;
    }
    
    .mobile-banner-text h3 {
        font-size: 1.4rem;
    }
    
    .mobile-banner-text p {
        font-size: var(--font-size-base); /* 16px - Base text */
    }
    
    .mobile-banner-cta {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-width: 180px;
    }
    
    .mobile-menu-content {
        padding: 1.5rem;
    }
    
    .menu-title {
        font-size: 1.6rem;
    }
    
    .mobile-nav-list a {
        padding: 1rem 1.2rem;
        font-size: 1.1rem;
    }
}


/* ========================================
   FOOTER SIZE REDUCTION
   ======================================== */

/* Footer Logo Size Reduction */
.footer-brand .logo {
    height: 100px !important;
    width: 140px !important;
}

/* Footer Paragraph Spacing Reduction */
.footer-brand p {
    margin-bottom: 1rem !important;
}
