/*--------------------------------------------------------------
# Import Google Fonts
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

/*--------------------------------------------------------------
# CSS Variables (Based on Banner)
--------------------------------------------------------------*/
:root {
    --color-primary: #F7B733; /* Golden Yellow */
    --color-secondary: #E85D04; /* Rich Orange */
    --color-accent: #D00000; /* Burnt Red */
    --color-dark: #2c1a0e; /* Warm Dark Brown */
    --color-dark-alt: #4A3021;
    --color-light: #FFF8E1; /* Warm White / Highlight */
    
    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Poppins', sans-serif;
    
    --gradient-main: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-alt) 40%, var(--color-secondary) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(44, 26, 14, 0.95) 0%, rgba(74, 48, 33, 0.9) 50%, rgba(232, 93, 4, 0.8) 100%);
    --gradient-footer: linear-gradient(135deg, #1f120a 0%, var(--color-dark) 100%);
    --glow-shadow-primary: 0 0 15px rgba(247, 183, 51, 0.6), 0 0 5px rgba(247, 183, 51, 0.8);
}

/*--------------------------------------------------------------
# General & Body
--------------------------------------------------------------*/
body {
    font-family: var(--font-secondary);
    background-color: var(--color-dark);
    color: var(--color-light);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-primary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

@media (max-width: 600px) {
    #body{
        overflow-x: hidden;
    }
}

/*--------------------------------------------------------------
# Helper Classes
--------------------------------------------------------------*/
.text-glow {
    color: var(--color-primary);
    text-shadow: var(--glow-shadow-primary);
}
.text-brand {
    color: var(--color-primary) !important;
}

.section-dark {
    background-color: var(--color-dark);
    color: var(--color-light);
}
.section-light {
    background-color: var(--color-light);
    color: var(--color-dark-alt);
}
.section-light h1, 
.section-light h2, 
.section-light h3 {
    color: var(--color-dark-alt);
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}
.section-light .section-title {
     color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-brand {
    background: var(--color-primary);
    color: var(--color-dark);
    border: 2px solid var(--color-primary);
    padding: 10px 25px;
    font-family: var(--font-secondary);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 183, 51, 0.3);
}
.btn-brand:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 93, 4, 0.5);
}

.btn-brand-secondary {
    background: var(--color-secondary);
    color: var(--color-light);
    border: 2px solid var(--color-secondary);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 50px;
}
.btn-brand-secondary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

.btn-outline-brand {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    padding: 10px 25px;
    font-family: var(--font-secondary);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-outline-brand:hover {
    background: var(--color-secondary);
    color: var(--color-light);
    transform: translateY(-3px);
}
.section-dark .btn-outline-brand {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.section-dark .btn-outline-brand:hover {
    background: var(--color-primary);
    color: var(--color-dark);
}

/*--------------------------------------------------------------
# Particle Background
--------------------------------------------------------------*/
#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--gradient-main);
    overflow: hidden;
}
/* Simple CSS particle animation */
@keyframes particle-glow {
    0%, 100% { box-shadow: 0 0 5px 2px rgba(247, 183, 51, 0.8); opacity: 0.1; }
    50% { box-shadow: 0 0 10px 4px rgba(247, 183, 51, 1); opacity: 1; }
}
#particle-container::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 5px 2px rgba(247, 183, 51, 0.8);
    animation: particle-glow 5s infinite alternate;
    top: 20%; left: 30%;
    /* You would add many more ::before and ::after with different positions and animation delays */
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
#main-nav {
    padding: 15px 0;
    background: rgba(44, 26, 14, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(247, 183, 51, 0.1);
}

@media (max-width: 600px) {
    #main-nav {
        width: 100vw;
        overflow-x: hidden;

    }
}
#main-nav.navbar-scrolled {
    padding: 10px 0;
    background: var(--color-dark);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.navbar-brand img {
    height: 6em;
    width: 7.5em;
    transition: all 0.3s ease;
}
#main-nav.navbar-scrolled .navbar-brand img {
    height: 5.5em;
    width: 7em;
}
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 248, 225, 0.7);
    font-family: var(--font-secondary);
    font-weight: 600;
    margin: 0 10px;
    position: relative;
}
.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--color-primary);
}
.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 100%;
}
.navbar-toggler {
    border-color: rgba(247, 183, 51, 0.5);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(247, 183, 51, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/*--------------------------------------------------------------
# Page Headers (for sub-pages) (MODIFIED)
--------------------------------------------------------------*/
.page-header {
    height: 60vh;
    min-height: 400px;
    /* REMOVED background property. 
      It's now set via inline style on each page 
      (e.g., style="background-image: [gradient], url(...)")
    */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    margin-top: 70px; /* Adjust based on navbar height */
}

/*--------------------------------------------------------------
# Hero Section (Home) (MODIFIED)
--------------------------------------------------------------*/
.hero-section {
    color: #fff;
    position: relative;
    padding: 0; /* Remove padding for full-screen slider */
}
.hero-title {
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* NEW: Hero Slider Styles */
.hero-slider {
    width: 100%;
    height: 100vh;
}
.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}
.hero-slider .hero-video,
.hero-slider .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slider .hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 26, 14, 0.7) 0%, rgba(74, 48, 33, 0.6) 100%);
    z-index: 5;
}
.hero-slider .hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    color: #fff;
}
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--color-primary);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    opacity: 1;
    transform: scale(1.1);
}
.hero-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    opacity: 1;
    transition: all 0.3s ease;
}
.hero-slider .swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.2);
}
/* END NEW Hero Slider Styles */


.video-placeholder {
    /* This class is no longer used for the hero but might be used elsewhere */
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px auto;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.video-placeholder img {
    width: 100%;
    border-radius: 12px;
}
.video-placeholder .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: var(--color-primary);
    text-shadow: 0 0 20px rgba(247, 183, 51, 0.8);
    transition: all 0.3s ease;
}
.video-placeholder:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    color: #fff;
}
.scroll-down-indicator {
    font-size: 40px;
    color: var(--color-primary);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/*--------------------------------------------------------------
# Countdown Timer
--------------------------------------------------------------*/
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2px;
    color: var(--color-primary);
}
.timer-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid rgba(247, 183, 51, 0.2);
    min-width: 8%;
}
.timer-box span {
    font-family: var(--font-primary);
    font-weight: 700;
}
.timer-label {
    font-size: 1rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--color-light);
}
.timer-separator {
    display: flex;
    align-items: center;
    font-size: 3rem;
    font-weight: 700;
}
/* Small version for events page */
.countdown-timer.fs-4 .timer-box {
    padding: 10px 15px;
    min-width: 70px;
}
.countdown-timer.fs-4 .timer-label-small {
    font-size: 0.8rem;
    font-family: var(--font-secondary);
    color: var(--color-light);
}
.countdown-timer.fs-4 .timer-separator {
    font-size: 2rem;
}

/*--------------------------------------------------------------
# Featured Artists
--------------------------------------------------------------*/
.artist-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}
.artist-card img {
    transition: all 0.4s ease;
}
.artist-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(44, 26, 14, 0.9) 0%, rgba(44, 26, 14, 0) 100%);
    color: #fff;
    transform: translateY(30%);
    transition: all 0.4s ease;
}
.artist-card-overlay h3 {
    color: #fff;
    margin-bottom: 5px;
}
.artist-card-overlay p {
    color: var(--color-primary);
    margin-bottom: 0;
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}
.artist-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), var(--glow-shadow-primary);
}
.artist-card:hover img {
    transform: scale(1.1);
}
.artist-card:hover .artist-card-overlay {
    transform: translateY(0);
}
.artist-card:hover .artist-card-overlay p {
    opacity: 1;
}

/* Artist Page Card */
.artist-card-page {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}
.artist-card-page img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.artist-card-page .artist-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(44, 26, 14, 0.9) 0%, rgba(44, 26, 14, 0) 100%);
    color: #fff;
}
.artist-card-page .artist-card-overlay h3 { color: #fff; }
.artist-card-page .artist-card-overlay p { color: var(--color-primary); }

.artist-card-page:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), var(--glow-shadow-primary);
}


/*--------------------------------------------------------------
# Parallax Section
--------------------------------------------------------------*/
.parallax-section {
    position: relative;
    height: 70vh;
    background: url('https://via.placeholder.com/1600x900.png?text=Parallax+Background') center center/cover no-repeat;
    background-attachment: fixed;
}
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    opacity: 0.8;
}
/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}

/*--------------------------------------------------------------
# Instagram Scroller
--------------------------------------------------------------*/
.instagram-scroller {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.instagram-scroller-inner {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}
.instagram-scroller-inner img {
    height: 250px;
    width: 250px;
    object-fit: cover;
    margin: 0 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.instagram-scroller:hover .instagram-scroller-inner {
    animation-play-state: paused;
}
.instagram-scroller-inner img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Assumes content is duplicated */
}

/*--------------------------------------------------------------
# YouTube CTA
--------------------------------------------------------------*/
.youtube-cta {
    background: var(--gradient-main);
}
.youtube-button {
    display: inline-flex;
    align-items: center;
    background-color: #FF0000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.youtube-button i {
    font-size: 2rem;
    margin-right: 15px;
}
.youtube-button:hover {
    color: #fff;
    transform: scale(1.05);
    animation-play-state: paused;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-section {
    background: var(--gradient-footer);
    color: rgba(255, 248, 225, 0.7);
}
.footer-heading {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.footer-links {
    padding-left: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links li a {
    color: rgba(255, 248, 225, 0.7);
}
.footer-links li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}
.social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.social-icons .social-icon:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-3px);
}
.social-icons .social-icon-dark {
    background: rgba(44, 26, 14, 0.1);
    color: var(--color-dark-alt);
}
.social-icons .social-icon-dark:hover {
    background: var(--color-dark-alt);
    color: var(--color-light);
}
.footer-bottom {
    background: #1f120a;
    color: rgba(255, 248, 225, 0.5);
}
.footer-bottom .bi-heart-fill {
    color: var(--color-accent);
}

/*--------------------------------------------------------------
# Scroll-to-Top Button
--------------------------------------------------------------*/
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(247, 183, 51, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top-btn:hover {
    background: var(--color-secondary);
    color: var(--color-light);
    transform: translateY(-5px);
}


/*--------------------------------------------------------------
# About Page - Timeline
--------------------------------------------------------------*/
.timeline {
    position: relative;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--color-primary);
    opacity: 0.3;
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-item::after { /* The dot */
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--color-dark);
    box-shadow: var(--glow-shadow-primary);
    z-index: 1;
}
.timeline-item:nth-child(odd)::after {
    right: -10px;
}
.timeline-item:nth-child(even)::after {
    left: -10px;
}
.timeline-content {
    background: var(--color-dark-alt);
    padding: 20px 30px;
    border-radius: 10px;
    border-left: 5px solid var(--color-primary);
}
.timeline-item:nth-child(odd) .timeline-content {
    border-left: 0;
    border-right: 5px solid var(--color-primary);
}
.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}
.timeline-title {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .timeline::before { left: 10px; }
    .timeline-item { width: 100%; left: 0 !important; padding-left: 60px; padding-right: 15px; text-align: left !important; }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) { left: 0; }
    .timeline-item::after { left: 0 !important; }
    .timeline-item:nth-child(odd) .timeline-content { border-right: 0; border-left: 5px solid var(--color-primary); }
}

/* About Page - Host & Partners */
.host-portrait {
    border-radius: 50%;
    border: 5px solid var(--color-primary);
    padding: 10px;
    box-shadow: var(--glow-shadow-primary);
}
.host-portrait img {
    border-radius: 50%;
}
.partner-logo {
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(50%);
}
.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Artists Page - Tabs & Modal
--------------------------------------------------------------*/
.nav-tabs {
    border-bottom: 2px solid var(--color-dark-alt);
}
.nav-tabs .nav-link {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark-alt);
    opacity: 0.7;
    border: none;
    border-bottom: 3px solid transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
    color: var(--color-secondary);
    opacity: 1;
    border-bottom-color: var(--color-secondary);
}
.modal-content {
    background: var(--color-dark);
    color: var(--color-light);
    border: 1px solid var(--color-primary);
    border-radius: 15px;
}
.modal-header {
    border-bottom: 1px solid rgba(247, 183, 51, 0.2);
}
.modal-title {
    color: var(--color-primary);
}
.video-thumbnail-placeholder {
    position: relative;
    cursor: pointer;
}
.video-thumbnail-placeholder .play-icon-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}
.video-thumbnail-placeholder:hover .play-icon-small {
    transform: translate(-50%, -50%) scale(1.1);
}

/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
.gallery-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}
.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2), 0 0 15px rgba(232, 93, 4, 0.5);
}

/* Swiper Slider */
.bts-slider {
    width: 100%;
    padding: 10px 0 40px 0; /* Space for pagination */
}
.bts-slider .swiper-slide {
    width: 300px;
    height: 250px;
}
.bts-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.bts-slider .swiper-pagination-bullet-active {
    background: var(--color-secondary);
}
.bts-slider .swiper-button-next,
.bts-slider .swiper-button-prev {
    color: var(--color-secondary);
}

/*--------------------------------------------------------------
# Events Page
--------------------------------------------------------------*/
.event-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.event-card img {
    height: 100%;
    object-fit: cover;
}
.event-card-body {
    padding: 25px;
    color: var(--color-dark);
}
.event-title {
    color: var(--color-dark-alt);
    margin-bottom: 15px;
}
.event-details {
    color: var(--color-dark-alt);
    margin-bottom: 5px;
}
.event-details i {
    color: var(--color-secondary);
    width: 20px;
}
.event-tag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 50px;
    margin-bottom: 15px;
    display: inline-block;
}
.event-tag-upcoming {
    background: var(--color-secondary);
    color: #fff;
}
.event-tag-past {
    background: #e0e0e0;
    color: #777;
}
.event-card-past {
    opacity: 0.7;
    filter: grayscale(60%);
}
.event-card-past .event-title {
    color: #777;
}
.event-card-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #fdfdfd;
}
@media (max-width: 767px) {
    .event-card-cta {
        flex-direction: row;
        gap: 10px;
        justify-content: flex-start;
        padding-left: 25px;
    }
    .event-card-cta .btn {
        margin-top: 0 !important;
    }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-form .form-control {
    background: rgba(44, 26, 14, 0.2);
    border: 1px solid var(--color-dark-alt);
    border-radius: 10px;
    padding: 12px 15px;
    color: var(--color-dark-alt);
}
.contact-form .form-control:focus {
    background: #fff;
    border-color: var(--color-secondary);
    box-shadow: 0 0 10px rgba(232, 93, 4, 0.3);
    color: var(--color-dark);
}
.contact-form .form-label {
    font-weight: 600;
    color: var(--color-dark-alt);
}
.contact-info p {
    color: var(--color-dark-alt);
    margin-bottom: 15px;
}
.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid var(--color-secondary);
}

/* Global Overflow Fix */

html, body {
  overflow-x: hidden;
}
