﻿/**
 * Events & Banquets Subdomain Specific Styles
 * events.bastion-pmr.com
 */

/* HEADER ACTION BUTTON */
.btn-call-admin {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0b1120 !important;
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    text-decoration: none;
    box-shadow: 0 4px 14px var(--accent-glow);
    transition: var(--transition-fast) !important;
}

.btn-call-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* HERO SECTION SPECIFICS */
.hero {
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.45) 0%, rgba(11, 17, 32, 0.96) 100%),
                url('../images/banket/banket_01.jpg') center/cover no-repeat;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

/* SECTIONS */
section {
    padding: 60px 0;
    position: relative;
}

/* SPOTLIGHT BANQUET HALL CARDS */
.spotlight-card {
    background: linear-gradient(135deg, rgba(26, 38, 62, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid rgba(245, 158, 11, 0.35);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px var(--accent-glow);
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.spotlight-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.spotlight-img-box {
    position: relative;
    min-height: 420px;
    cursor: pointer;
    overflow: hidden;
}

.spotlight-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spotlight-card:hover .spotlight-img-box img {
    transform: scale(1.05);
}

.spotlight-overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(11, 17, 32, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    transition: var(--transition-fast);
}

.spotlight-img-box:hover .spotlight-overlay-btn {
    background: rgba(11, 17, 32, 0.2);
}

.tour-icon-pulse {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    color: #0b1120;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 16px rgba(245, 158, 11, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.spotlight-body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-badge {
    display: inline-block;
    background: rgba(245, 158, 11, 0.15);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.spotlight-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(24px, 3.5vw, 34px);
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.spotlight-text {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* FEATURES & FORMATS */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .spotlight-card,
    .spotlight-card.reverse {
        grid-template-columns: 1fr;
    }
    .spotlight-body {
        padding: 24px;
    }
    section {
        padding: 40px 0;
    }
}
