:root {
    --primary-color: #800020; /* Deep Maroon */
    --primary-hover: #5e0017;
    --secondary-color: #d4af37; /* Gold */
    --secondary-hover: #b5952f;
    --bg-dark: #1a1a1a; /* Dark Charcoal */
    --text-light: #f5f5f5; /* Warm White */
    --card-bg: #2a2a2a;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Premium Typography */
.text-primary-custom { color: var(--primary-color) !important; }
.text-gold { color: var(--secondary-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-gold { background-color: var(--secondary-color) !important; }

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #d4af37 0%, #b5952f 100%);
    color: #1a1a1a;
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: #000;
}

.btn-outline-gold {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-gold:hover {
    background-color: var(--secondary-color);
    color: #1a1a1a;
}

/* Navbar */
.navbar-custom {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-custom .nav-link {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 10px;
}

.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
    color: var(--secondary-color);
}

/* Header Logo */
.header-logo {
    height: 52px;
    max-height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.25s ease;
}

.header-logo:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .navbar-custom {
        padding: 6px 0;
    }
    .header-logo {
        height: 48px;
        max-height: 48px;
    }
}

/* Offcanvas Side Menu */
.offcanvas-side-menu {
    background: linear-gradient(180deg, #1f0712 0%, #0d0306 100%) !important;
    border-left: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #fff !important;
    width: 320px !important;
    max-width: 85vw;
}

.offcanvas-side-menu .offcanvas-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.25rem 1.5rem;
}

.offcanvas-side-menu .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.offcanvas-side-menu .btn-close:hover {
    transform: rotate(90deg);
    opacity: 1;
}

.side-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu-nav li {
    margin-bottom: 6px;
}

.side-menu-nav .side-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.side-menu-nav .side-link i {
    font-size: 1.25rem;
    color: #d4af37;
    transition: transform 0.25s ease;
}

.side-menu-nav .side-link:hover,
.side-menu-nav .side-link.active {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateX(4px);
}

.side-menu-nav .side-link:hover i {
    transform: scale(1.15);
}

.side-menu-contact-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    padding: 16px;
}

.side-menu-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #ccc;
    font-size: 0.88rem;
}

.side-menu-contact-item:last-child {
    margin-bottom: 0;
}

.side-menu-contact-item i {
    color: #d4af37;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.side-menu-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
    text-decoration: none;
    transition: all 0.25s ease;
}

.side-menu-social-btn:hover {
    background: #d4af37;
    color: #11050a;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(128, 0, 32, 0.8)), url('../images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffcc00 0%, #ff007f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ffcc00; /* Fallback */
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.9));
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Cards */
.premium-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.premium-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Schedule / Booking Cards */
.schedule-card {
    background: linear-gradient(145deg, #2a2a2a, #222);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
}

.schedule-card .day-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Ticket Preview */
.ticket-preview {
    background: #fff;
    color: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    position: relative;
}

.ticket-preview::before, .ticket-preview::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.ticket-preview::before { left: -20px; }
.ticket-preview::after { right: -20px; }

.ticket-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 2px dashed rgba(255,255,255,0.3);
}

.ticket-body {
    padding: 30px 40px;
}

/* Forms */
.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #111;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--secondary-color);
}

/* Fixes */
.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Why Attend Section Styles */
.why-attend-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a000a 100%);
    position: relative;
}
.why-attend-card {
    background: linear-gradient(180deg, rgba(128,0,32,0.25) 0%, rgba(26,26,26,0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.why-attend-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 1);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}
.why-attend-icon {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #d4af37;
    margin: 0 auto 20px auto;
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, rgba(0,0,0,0) 70%);
}
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.section-separator span {
    width: 30px;
    height: 1px;
    background: #d4af37;
}
.section-separator i {
    color: #d4af37;
    font-size: 0.8rem;
}

/* Custom Accordion */
.accordion-button::after {
    filter: invert(72%) sepia(48%) saturate(549%) hue-rotate(5deg) brightness(97%) contrast(89%);
    transition: transform 0.4s ease;
}
.accordion-item .accordion-button:not(.collapsed) {
    color: #d4af37 !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Schedule Card Hover */
.schedule-premium-card:not(.sold-out):hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 1) !important;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2) !important;
}

/* Custom Carousel Indicators (Dots) */
.hero-slider-section .carousel-indicators {
    margin-bottom: 2rem;
}
.hero-slider-section .carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: none !important;
    margin: 0 8px !important;
    opacity: 1;
    transition: all 0.3s ease;
}
.hero-slider-section .carousel-indicators button.active {
    background-color: var(--secondary-color) !important;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
}

/* ===== Premium Section Icon Badge ===== */
.section-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(128,0,32,0.25) 0%, rgba(212,175,55,0.15) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.12), 0 4px 16px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    position: relative;
    animation: badgePulse 3s ease-in-out infinite;
    backdrop-filter: blur(4px);
}
.section-icon-badge i {
    font-size: 1.6rem;
    color: #d4af37;
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
}
.section-icon-badge::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212,175,55,0.4), rgba(128,0,32,0.2), rgba(212,175,55,0.4));
    z-index: -1;
    opacity: 0.6;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.12), 0 4px 16px rgba(0,0,0,0.3); }
    50%       { box-shadow: 0 0 32px rgba(212,175,55,0.28), 0 4px 20px rgba(0,0,0,0.4); }
}

