@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:wght@700&display=swap');

:root {
    --bg-black: #050505;
    --primary-red: #ff003c;
    --accent-purple: #8a2be2;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-red: 0 0 20px rgba(255, 0, 60, 0.5);
    --glow-purple: 0 0 20px rgba(138, 43, 226, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Animation Tokens */
    --reveal-timing: 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* --- Global Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--reveal-timing), transform var(--reveal-timing);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes animatedBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-border {
    position: relative;
    border-radius: inherit;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, var(--primary-red), transparent, var(--accent-purple), transparent);
    background-size: 300% 300%;
    z-index: -1;
    border-radius: inherit;
    animation: animatedBorder 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.animated-border:hover::before {
    opacity: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* --- Header & Nav --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
}

.logo span {
    color: var(--primary-red);
    text-shadow: var(--glow-red);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-purple));
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-red);
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-red);
    color: white;
    box-shadow: var(--glow-red);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7), var(--bg-black)),
                linear-gradient(to right, rgba(5,5,5,0.5), transparent);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-purple);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
    text-shadow: var(--glow-purple);
}

.hero-title {
    font-size: 8rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 30%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-red), var(--accent-purple));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 60, 0.5);
}

.btn-outline {
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--bg-black);
    transform: translateY(-5px);
}

/* --- Decorations --- */
.hero-glow-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-red);
    filter: blur(150px);
    opacity: 0.2;
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    filter: blur(150px);
    opacity: 0.2;
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
    nav {
        display: none;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }
}

/* --- Past Events Section --- */
.events-section {
    padding: 100px 5%;
    background: var(--bg-black);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--primary-red);
    font-weight: 600;
    letter-spacing: 2px;
}

.carousel-container {
    width: 100%;
    max-width: 100%; /* Full width as requested */
    margin: 0 auto;
    position: relative;
    height: 70vh; /* Fixed height for premium feel on desktop */
    border-radius: 0; /* Remove border radius for full-width look */
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Arrows Styles */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 1.2rem;
}

.carousel-arrow:hover {
    background: var(--primary-red);
    box-shadow: var(--glow-red);
    border-color: var(--primary-red);
}

.arrow-prev {
    left: 30px;
}

.arrow-next {
    right: 30px;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    transform: scale(1.05); /* Subtle scale for transition */
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 10%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    color: white;
    text-align: right; /* RTL support */
    z-index: 2;
}

.slide-content h3 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.slide-content p {
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Pagination Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-red);
    box-shadow: var(--glow-red);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    .carousel-container {
        height: 60vh;
    }
    .slide-content h3 {
        font-size: 2rem;
    }
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .arrow-prev { left: 15px; }
    .arrow-next { right: 15px; }
}

/* --- Footer --- */
footer {
    padding: 80px 5% 40px;
    background: #030303;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--primary-red);
}

.footer-desc {
    color: var(--text-gray);
    max-width: 350px;
    line-height: 1.8;
}

.footer-links h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-red);
    padding-right: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer {
        padding: 50px 5% 30px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-logo {
        font-size: 2rem;
    }
    .footer-desc {
        margin: 0 auto;
    }
    .footer-links h4::after {
        right: 50%;
        transform: translateX(50%);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- Clubs Section --- */
.clubs-section {
    padding: 100px 5%;
    background: #050505;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.club-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.club-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: var(--glow-red);
}

.club-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.club-type {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.club-rating {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 191, 0, 0.9);
    color: black;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.club-info {
    padding: 25px;
}

.club-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.club-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-details {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-details:hover {
    background: white;
    color: black;
}

/* --- Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    padding: 50px 20px;
    justify-content: center;
    align-items: flex-start; /* Start from top to allow scrolling */
}

.modal-content {
    background: #111;
    width: 100%;
    max-width: 700px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    padding: 0;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 0, 60, 0.2);
    overflow: hidden;
    margin: auto; /* Centering vertically if content is short */
}

.modal-img-header {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.modal-body-padding {
    padding: 30px;
}

.close-modal {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-header h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 5px;
}

.modal-location {
    color: var(--primary-red);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.price-row {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: var(--transition);
}

.price-row:hover {
    background: rgba(255, 0, 60, 0.05);
    border-color: var(--primary-red);
    transform: scale(1.02);
}

.price-row h4 {
    color: white;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-modal-booking {
    width: 100%;
    padding: 20px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-modal-booking:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.4);
}

.old-price {
    text-decoration: line-through;
    color: #ff4444;
    font-size: 0.9rem;
}

.new-price {
    color: #25d366;
    font-size: 1.2rem;
    font-weight: 800;
}

.price-features {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.5;
}

/* --- Floating WhatsApp --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.floating-whatsapp i {
    font-size: 1.5rem;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    background: #128c7e;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .floating-whatsapp span {
        display: none;
    }
    .floating-whatsapp {
        padding: 15px;
        border-radius: 50%;
        bottom: 20px;
        left: 20px;
    }
}

/* --- Booking Section Redesign (Two Column) --- */
.booking-section {
    padding: 100px 5%;
    background: radial-gradient(circle at top right, #1a0505 0%, var(--bg-black) 70%);
}

.booking-wrapper {
    display: flex;
    gap: 60px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.booking-form-card {
    flex: 1.2;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.booking-form-card h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    width: 100%;
}


.form-group label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.form-group input, 
.form-group select {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 18px;
    padding-left: 45px;
}

.form-group select option {
    background: #111;
    color: white;
    padding: 15px;
}


.form-group input:focus {
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.2);
}

.btn-submit {
    grid-column: span 2;
    margin-top: 15px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-purple));
    color: white;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 0, 60, 0.3);
}

.btn-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 60, 0.5);
}

.info-block h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block p {
    color: var(--text-gray);
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
}

.info-block p span {
    color: white;
    font-weight: 600;
}

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: white;
}

.contact-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.social-bar-horizontal {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-circle:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: var(--glow-red);
}

@media (max-width: 992px) {
    .booking-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .booking-wrapper {
        gap: 30px;
    }
    .booking-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .form-group.full-width {
        grid-column: 1;
    }
    .booking-form-card {
        padding: 25px 15px;
        border-radius: 25px;
        margin: 0;
        width: 100%;
    }
    .booking-form-card h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .booking-section {
        padding: 40px 15px;
    }
    .form-group input, 
    .form-group select {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    .btn-submit {
        padding: 15px;
        font-size: 1rem;
    }
}


/* --- Package Options & Date Styling --- */
.package-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}




.package-option {
    flex: 1;
    position: relative;
}

.package-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.package-label {
    display: block;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.package-option input:checked + .package-label {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: var(--glow-red);
    color: white;
}

.package-label span {
    display: block;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Make the icon white */
    cursor: pointer;
}

/* --- Upcoming Events Section --- */
.upcoming-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, var(--bg-black), #0a0a0a);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(255, 0, 60, 0.2);
}

.event-card-img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-card-img img {
    transform: scale(1.1);
}

.event-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
}

.event-date {
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 15px;
    box-shadow: var(--glow-red);
}

.event-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

.event-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.event-card .btn-small {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    transition: var(--transition);
}

.event-card:hover .btn-small {
    background: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: var(--glow-red);
}

@media (max-width: 1024px) {
    .upcoming-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .upcoming-grid {
        grid-template-columns: 1fr;
    }
}
