/* SECTION BACKGROUND */
.venue-section {
    background-size: cover;
    background-position: center;
    position: relative;
}

/* DARK OVERLAY */
.venue-overlay {
    background: linear-gradient(
        135deg,
        rgba(10,31,68,0.95),
        rgba(58,134,255,0.85)
    );
}

/* STATS CARD */
.stats-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* EACH STAT */
.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-item i {
    font-size: 28px;
    margin-right: 15px;
    color: #00c6ff;
}

.stat-item h3 {
    margin: 0;
    font-weight: 700;
}

.stat-item p {
    margin: 0;
    opacity: 0.85;
}

/* VENUE MAIN CARD */
.venue-main-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 35px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* IMAGE */
.venue-image-wrap img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* LABEL */
.venue-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

/* VENUE NAME */
.venue-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* LOCATION */
.venue-location {
    font-size: 1rem;
    opacity: 0.9;
}

.venue-location i {
    margin-right: 8px;
    color: #00c6ff;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .venue-main-card {
        text-align: center;
    }

    .stat-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .stat-item i {
        margin-bottom: 10px;
    }
}
