/* ===== VENUE PAGE STYLES ===== */
.venue-section {
    margin-bottom: 60px;
}

/* --- Venue Header --- */
.venue-header {
    margin-bottom: 32px;
}
.venue-header__university {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 8px;
    line-height: 1.3;
}
.venue-header__building {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px;
    line-height: 1.4;
    display: inline-block;
}
.venue-header__desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #6B6B6B;
    margin: 16px 0 0;
}

/* --- Info Cards --- */
.venue-info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.venue-info-card {
    flex: 1 1 280px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: #F9FAFB;
    border-radius: 14px;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}

.venue-info-card:hover {
    box-shadow: 0 6px 24px rgba(255, 120, 0, .1);
    transform: translateY(-2px);
    border-color: #FFD5A8;
}
.venue-info-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #FFF3E8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 120, 0, .12);
}
.venue-info-card__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
}
.venue-info-card__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.venue-info-card__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #B0A090;
}
.venue-info-card__value {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.4;
}
.venue-info-card__value a {
    color: #FF7800 !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: color .2s;
}
.venue-info-card__value a:hover {
    color: #E56B00 !important;
}

/* --- Map + Video Row --- */
.venue-map-video {
    display: flex;
    flex-wrap: wrap;
   /*gap: 20px;*/
    margin-bottom: 60px;
}
.venue-map,
.venue-video {
    flex: 1 1 400px;
    border-radius: 14px;
    overflow: hidden;
    min-height: 360px;
}

.venue-map {
    margin-right: 32px;
}
.venue-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.venue-video video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}
.venue-video {
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    position: relative;
    min-height: 360px;
}
.venue-video iframe,
.venue-video video {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: none;
    display: block;
    object-fit: cover;
}
.venue-video__label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    z-index: 2;
}

/* --- Photo Gallery --- */
.venue-photos-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 24px;
}
.venue-photos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.venue-photo {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: #eee;
}
.venue-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.venue-photo:hover img {
    transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .venue-map {
        margin-right: 0px;
        margin-bottom: 16px;
    }
    .venue-info-cards {
        grid-template-columns: 1fr !important;
    }
    .venue-map-video {
        grid-template-columns: 1fr !important;
    }
    .venue-map,
    .venue-video {
        min-height: 300px;
    }
    .venue-map iframe,
    .venue-video iframe,
    .venue-video video {
        min-height: 300px;
    }
}
@media (max-width: 768px) {
    .venue-header__university {
        font-size: 22px;
    }
    .venue-header__building {
        font-size: 16px;
    }
    .venue-photos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .venue-photos-title {
        font-size: 20px;
    }
}
@media (max-width: 480px) {


    .venue-photos-grid {
        grid-template-columns: 1fr;
    }
    .venue-map,
    .venue-video {
        min-height: 240px;
    }
    .venue-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .venue-map iframe,
    .venue-video iframe,
    .venue-video video {
        min-height: 240px;
    }
}