/* Force header solid on Venue page only */
.header {
    background-color: rgba(40, 26, 12, 0.95) !important;
    backdrop-filter: blur(10px);
}

.venue-page {
    padding-top: 90px; /* Header clearance */
    min-height: 100vh;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
}

section.venue-section {
    background-color: #f5f5f5 !important;
    padding: 60px 0 80px !important;
    flex: 1;
}

/* Content Card (Left) */
.venue-content-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px 44px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.venue-content-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Badge */
.venue-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color, #f87500);
    border: 1.5px solid var(--accent-color, #f87500);
    border-radius: 50px;
    padding: 5px 18px;
    margin-bottom: 28px;
    width: fit-content;
}

/* Title */
.venue-title {
    font-family: var(--heading-font, 'Rubik', sans-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 24px;
}

/* Description */
.venue-description {
    border-left: 3px solid var(--accent-color, #f87500);
    padding-left: 20px;
    margin-bottom: 36px;
}

.venue-description p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Feature Items Row */
.venue-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.venue-feature-item {
    flex: 1;
    min-width: 120px;
    background: #f9f9f9;
    border-radius: 14px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* Feature Icons */
.venue-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.venue-feature-icon--location {
    background: rgba(248, 117, 0, 0.1);
    color: var(--accent-color, #f87500);
}

.venue-feature-icon--infra {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.venue-feature-icon--secure {
    background: rgba(248, 117, 0, 0.1);
    color: var(--accent-color, #f87500);
}

/* Feature Label */
.venue-feature-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #333;
    line-height: 1.3;
}

/* ============================================================
   Creative Map Enhancements
   ============================================================ */
.venue-map-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.venue-map-card:hover {
    transform: translateY(-5px) scale(1.005);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.venue-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    filter: grayscale(0.2) contrast(1.1);
    transition: filter 0.5s ease;
}

.venue-map-card:hover iframe {
    filter: grayscale(0);
}

/* Glassmorphism Map Info */
.venue-map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    pointer-events: none;
    max-width: 240px;
}

.venue-map-info-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    transform: translateX(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.venue-map-card:hover .venue-map-info-card {
    transform: translateX(0);
    opacity: 1;
}

.venue-map-info-card h5 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.venue-map-info-card h5 i {
    color: var(--accent-color, #f87500);
}

.venue-map-info-card p {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Directions Button */
.btn-map-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent-color, #f87500);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(248, 117, 0, 0.2);
}

.btn-map-directions:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Floating Badge */
.venue-map-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 5;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.venue-map-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-color, #f87500);
    border-radius: 50%;
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(248, 117, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(248, 117, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(248, 117, 0, 0); }
}

/* ============================================================
   Responsive Adjustments
   ============================================================ */
@media (max-width: 991.98px) {
    .venue-section {
        padding: 80px 0 60px;
    }

    .venue-content-card {
        padding: 36px 30px;
    }

    .venue-map-card {
        min-height: 350px;
    }

    .venue-map-card iframe {
        min-height: 350px;
    }
}

@media (max-width: 575.98px) {
    .venue-features {
        flex-direction: column;
    }

    .venue-feature-item {
        flex-direction: row;
        text-align: left;
        padding: 16px 20px;
    }

    .venue-content-card {
        padding: 28px 22px;
    }

    .venue-title {
        font-size: 1.75rem;
    }
}
