/* ========================================
   auditoriums.css — Styles specific to auditoriums.html
   ======================================== */

/* Auditorium cards */
.aud-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(55, 65, 81, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.aud-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
}

.aud-card-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.aud-card:hover .aud-card-img {
    transform: scale(1.05);
}

.aud-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.aud-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    backdrop-filter: blur(8px);
    letter-spacing: 0.05em;
}

.aud-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.aud-detail-row:last-child {
    border-bottom: none;
}

.aud-detail-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(220, 38, 38, 0.15);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}