/* Color Variables & Base Reset */
:root {
    --bg-base: #090909;
    --bg-section: #121212;
    --bg-card: #181818;
    --border-gold: #D4AF37;
    --hover-gold: #FFD700;
    --text-light-grey: #b0b0b0;
}

body {
    background-color: var(--bg-base);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.font-heading {
    font-family: 'Playfair Display', serif;
}

.gold-text {
    color: var(--border-gold) !important;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

/* Navbar */
.navbar {
    background-color: rgba(9, 9, 9, 0.95);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--border-gold) !important;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37, #aa8c2c);
    color: #000000;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #ffd700, #D4AF37);
    color: #000000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--border-gold);
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--border-gold);
    color: #000000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    background-color: #000000;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(9,9,9,0.7), rgba(9,9,9,0.95));
}

.badge-custom {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--border-gold);
    padding: 6px 16px;
    border-radius: 50rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Cards & Custom Layout */
.custom-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.custom-card:hover {
    border-color: var(--hover-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
}

.gold-divider {
    width: 60px;
    height: 3px;
    background-color: var(--border-gold);
}

.gold-divider-vertical {
    width: 4px;
    background: linear-gradient(to bottom, var(--border-gold), transparent);
}

/* Timeline */
.timeline-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.timeline-step {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 140px;
    text-align: center;
    transition: all 0.3s ease;
}

.timeline-step:hover {
    border-color: var(--hover-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Gallery Overlay */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 9, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Accordion Customization */
.accordion-button {
    background-color: var(--bg-card) !important;
    color: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--border-gold) !important;
    border-color: var(--border-gold) !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.accordion-item {
    background-color: var(--bg-card) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-body {
    color: var(--text-light-grey);
    background-color: var(--bg-card);
}

/* Footer Links */
.footer-link {
    color: var(--text-light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--border-gold);
}