/*--------------------------------------------------------------
# Reset and Base Styles
--------------------------------------------------------------*/
:root {
    --primary-color: #8dc045;
    --primary-light: #a5d265;
    --primary-dark: #71a32a;
    --secondary-color: #f9b21a;
    --secondary-light: #ffca54;
    --secondary-dark: #e09200;
    --text-color: #333333;
    --text-light: #949494;
    --background-light: #f8f9fa;
    --background-dark: #222222;
    --white: #ffffff;
    --dark: #222222;
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --navbar-height: 80px;  /* Adjust this value based on your navbar's actual height */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    margin: 0;
}


body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# Grid System (Bootstrap-like)
--------------------------------------------------------------*/
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

@media (min-width: 768px) {
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 992px) {
    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.text-center {
    text-align: center !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.d-flex {
    display: flex !important;
}

.d-block {
    display: block !important;
}

.d-none {
    display: none !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.bg-light {
    background-color: var(--background-light) !important;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
    
    .d-lg-none {
        display: none !important;
    }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(141, 192, 69, 0.3);
}

.btn-outline-light {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(249, 178, 26, 0.3);
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9rem;
}

/*--------------------------------------------------------------
# Form Controls
--------------------------------------------------------------*/
.form-control {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white);
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(141, 192, 69, 0.25);
}

.form-check {
    display: block;
    margin-bottom: 0.5rem;
}

.form-check-input {
    margin-right: 0.5rem;
}

/*--------------------------------------------------------------
# Font Awesome Icons Styling
--------------------------------------------------------------*/
.ticket-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.ticket-card.highlight .ticket-icon i {
    color: var(--secondary-color);
}

.social-btn i {
    font-size: 1.5rem;
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.footer-links a i {
    margin-right: 10px;
    color: var(--primary-color);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    max-width: 200px;
    margin-bottom: 20px;
    animation: pulse-glow 2s infinite;
}

.preloader-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0;
    color: white;
    margin: 0;
}

.preloader-text span {
    display: inline-block;
    font-size: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: text-appear 0.5s forwards;
}

.preloader-text .highlight {
    color: var(--primary-color);
}

.preloader-year {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
    opacity: 0;
    animation: fade-in 0.5s 1.0s forwards;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: loading 1.5s forwards;
}

@keyframes text-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading {
    to {
        width: 100%;
    }
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}

@keyframes pulse-glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(141, 192, 69, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(141, 192, 69, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(141, 192, 69, 0.3));
    }
}

#preloader.fading-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--dark);
    transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    transition: var(--transition);
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    height: var(--navbar-height);
    display: flex;
    align-items: center;
}

.navbar.navbar-shrink {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.95);
}

.navbar-brand img {
    max-height: 50px;
    transition: var(--transition);
}

.navbar.navbar-shrink .navbar-brand img {
    max-height: 45px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: 10px;
}

.nav-link {
    padding: 10px 15px;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    background-color: rgba(0, 0, 0, 0.9);
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: var(--white);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--white);
    text-decoration: none;
    background-color: var(--primary-color);
    transform: translateX(5px);
}

.navbar-toggler {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    color: var(--white);
    transition: var(--transition);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    position: relative;
    transition: var(--transition);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

/* Animation for the hamburger menu */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        display: none;
    }
    
    .navbar-collapse.show {
        display: block;
    }
    
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-item {
        margin-left: 0;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        background-color: rgba(0, 0, 0, 0.3);
        box-shadow: none;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/img/hero-bg.jpg') center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

.hero-logo img {
    max-height: 300px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.2); }
    100% { transform: scale(1); filter: brightness(1); }
}

#hero h1 {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--white);
}

#hero h2 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary-color) !important;
}

.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.confetti {
    position: absolute;
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0;
    top: -10px;
    animation: fall 5s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-buttons .btn {
    margin: 10px 5px;
    padding: 12px 35px;
    font-weight: 700;
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-scroll-hint {
    position: relative;
    margin-top: 50px;
}

.scroll-down-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-down-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.scroll-down-link .icon {
    font-size: 24px;
    margin-top: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/*--------------------------------------------------------------
# Countdown Section
--------------------------------------------------------------*/
#countdown {
    background-color: var(--background-dark);
    position: relative;
    padding: 40px 0;
}

.countdown-wrapper {
    padding: 20px 30px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    box-shadow: var(--box-shadow);
    color: var(--white);
}

.countdown-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.countdown-block {
    text-align: center;
    min-width: 80px;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.countdown-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.time-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.time-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 5px;
}

/*--------------------------------------------------------------
# Tickets Section
--------------------------------------------------------------*/
.tickets-section {
    background-color: var(--background-light);
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

.ticket-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.ticket-card.highlight::before {
    background-color: var(--secondary-color);
}

.ticket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ticket-card:hover::before {
    width: 10px;
}

.ticket-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(141, 192, 69, 0.1);
    margin-bottom: 20px;
}

.ticket-card.highlight .ticket-icon {
    background-color: rgba(249, 178, 26, 0.1);
}

.ticket-icon i, .ticket-icon .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.ticket-card.highlight .ticket-icon i, .ticket-card.highlight .ticket-icon .icon {
    color: var(--secondary-color);
}

.ticket-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.ticket-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.ticket-card.highlight .ticket-price {
    color: var(--secondary-color);
}

.ticket-details {
    color: var(--text-light);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Times Styling
--------------------------------------------------------------*/
.hero-times {
    margin-bottom: 20px;
}

.hero-time-info {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.time-day {
    background: rgba(141, 192, 69, 0.2);
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid rgba(141, 192, 69, 0.3);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.time-separator {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

/*--------------------------------------------------------------
# Ticket Time Styling
--------------------------------------------------------------*/
.ticket-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0;
    padding: 8px 15px;
    background-color: rgba(141, 192, 69, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.ticket-card.highlight .ticket-time {
    background-color: rgba(249, 178, 26, 0.1);
    color: var(--secondary-color);
}

.ticket-time.special {
    background-color: rgba(249, 178, 26, 0.15);
    color: var(--secondary-dark);
}

.ticket-time i {
    font-size: 0.9rem;
}

.ticket-time span {
    font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Responsive Styling voor Tijden
--------------------------------------------------------------*/
@media (max-width: 767px) {
    .hero-time-info {
        font-size: 1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .time-day {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .time-separator {
        display: none;
    }
    
    .ticket-time {
        margin: 10px 0;
        padding: 6px 12px;
    }
    
    .ticket-time span {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .hero-time-info {
        font-size: 0.9rem;
    }
    
    .time-day {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/*--------------------------------------------------------------
# Aftermovie Section
--------------------------------------------------------------*/
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.aftermovie-content {
    padding: 20px;
}

/*--------------------------------------------------------------
# Line-up Section
--------------------------------------------------------------*/
#line-up {
    background-color: var(--background-dark);
    color: var(--white);
    padding: 60px 0;
}

#line-up .section-title::after {
    background-color: var(--secondary-color);
}

.lineup-day {
    position: relative;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow);
}

.day-title {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.25rem;
    margin-bottom: 30px;
    position: relative;
}

.lineup-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lineup-artist {
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: default;
}

.lineup-artist:last-child {
    border-bottom: none;
}

.artist-name {
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    transition: var(--transition);
}

.lineup-artist:hover {
    transform: translateX(10px);
}

.lineup-artist:hover .artist-name {
    color: var(--secondary-color);
}

/*--------------------------------------------------------------
# Enhanced Lineup Section Styles
--------------------------------------------------------------*/
.lineup-tabs {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.lineup-tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.lineup-tab-btn {
    padding: 12px 25px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 10px;
}

.lineup-tab-btn.active, 
.lineup-tab-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.lineup-tab-content {
    display: none;
}

.lineup-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.lineup-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 576px) {
    .lineup-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .lineup-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .lineup-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lineup-card {
    perspective: 1000px;
    height: 300px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    cursor: pointer;
}

.lineup-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.lineup-card:hover .lineup-card-inner {
    transform: rotateY(180deg);
}

.lineup-card-front, 
.lineup-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.lineup-card-front {
    background-color: var(--dark);
}

.lineup-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
}

.lineup-card:hover .lineup-card-front img {
    opacity: 0.6;
    transform: scale(1.1);
}

.lineup-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    z-index: 1;
}

.lineup-card-content h3 {
    margin: 0;
    font-size: 1.5rem;
    word-wrap: break-word;
    padding-right: 15px; /* Add some padding to prevent text from getting too close to the edge */
    max-width: 100%; /* Ensure text doesn't overflow */
}

.lineup-day-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.lineup-card-back {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lineup-card-details {
    padding: 20px;
}

.lineup-card-details h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.lineup-card-details p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.lineup-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.lineup-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.lineup-social-link:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reusable card component that can also be used for sponsors */
.spektakel-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.spektakel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.spektakel-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.spektakel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.spektakel-card:hover .spektakel-card-img img {
    transform: scale(1.1);
}

.spektakel-card-body {
    padding: 20px;
}

.spektakel-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-color);
}

.spektakel-card-text {
    color: var(--text-light);
    margin-bottom: 15px;
}

.spektakel-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.spektakel-card.highlight {
    border-left: 5px solid var(--secondary-color);
}

.spektakel-card.highlight .spektakel-card-badge {
    background-color: var(--secondary-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    border-radius: var(--border-radius);
    z-index: -1;
}

/* Mobile-specific styles for the About Section */
@media (max-width: 767px) {
  /* Hide the about image on mobile devices */
  .about-image {
    display: none;
  }
  
  /* Adjust the about-content to take full width */
  .about-content {
    width: 100%;
  }
  
  /* Remove the margin bottom that was used to create space between the image and content on mobile */
  .col-lg-6.mb-4.mb-lg-0 {
    margin-bottom: 0 !important;
  }
}

.about-content h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-content p {
    margin-bottom: 20px;
}

.info-box {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-left: 5px solid var(--secondary-color);
}

.info-box h4 {
    font-size: 1.2rem;
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
}

.info-box i, .info-box .icon {
    color: var(--secondary-color);
    margin-right: 10px;
}

/*--------------------------------------------------------------
# Social Media Section
--------------------------------------------------------------*/
#social {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/img/subscribe-bg.jpg') fixed center center;
    background-size: cover;
    color: var(--white);
    padding: 60px 0;
}

.social-content h2 {
    color: var(--white);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.social-btn:hover {
    background-color: var(--secondary-color);
    color: var(--dark);
    transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i, .contact-item .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 20px;
}

.contact-item h5 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-form .form-control {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(141, 192, 69, 0.25);
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: underline;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: var(--background-dark);
    color: var(--white);
    padding: 60px 0;
}

.footer h5 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a i, .footer-links a .icon {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo img {
    max-height: 80px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
}

.dev-link {
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.dev-link:hover {
    color: var(--white);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s, transform 0.8s;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0) !important;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="fade-right"] {
    transform: translateX(-20px);
}

[data-aos="fade-left"] {
    transform: translateX(20px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

.pulse-animation {
    animation: pulse-effect 0.5s ease;
}

@keyframes pulse-effect {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/*--------------------------------------------------------------
# Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 1199px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .time-value {
        font-size: 2.2rem;
    }
    
    #hero h1 {
        font-size: 3.5rem;
    }
    
    #hero h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .countdown-block {
        min-width: 70px;
    }
    
    .ticket-card {
        padding: 30px 20px;
    }
    
    .about-image::before {
        display: none;
    }
    
    #hero h1 {
        font-size: 3rem;
    }
    
    #hero h2 {
        font-size: 1.6rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    #hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0;
    }
    
    #hero h1 {
        font-size: 2.5rem;
    }
    
    #hero h2 {
        font-size: 1.4rem;
    }
    
    .hero-logo img {
        max-height: 250px;
    }
    
    .countdown-block {
        min-width: 60px;
    }
    
    .time-value {
        font-size: 1.8rem;
    }
    
    .time-label {
        font-size: 0.75rem;
    }
    
    .ticket-icon {
        width: 70px;
        height: 70px;
    }
    
    .ticket-icon i, .ticket-icon .icon {
        font-size: 2rem;
    }
    
    .ticket-price {
        font-size: 1.8rem;
    }
    
    .lineup-day {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .day-title {
        font-size: 1.1rem;
        padding: 8px 20px;
    }
    
    .artist-name {
        font-size: 1.2rem;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    #hero h1 {
        font-size: 2rem;
    }
    
    #hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-logo img {
        max-height: 120px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .countdown-wrapper {
        padding: 15px;
    }
    
    .countdown-block {
        min-width: 55px;
        padding: 8px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .contact-item i, .contact-item .icon {
        font-size: 1.5rem;
        margin-right: 15px;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-links, .footer h5, .dev-link {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/*--------------------------------------------------------------
# Sponsors Page Styling
--------------------------------------------------------------*/
.sponsors-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

/* Background pattern */
.sponsors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, var(--primary-color) 1px, transparent 1px), 
                    radial-gradient(circle, var(--secondary-color) 1px, transparent 1px);
  background-size: 30px 30px, 25px 25px;
  background-position: 0 0, 15px 15px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.sponsors-section .container {
  position: relative;
  z-index: 1;
}

/* Main sponsors styling - showcasing as featured cards */
.main-sponsors-grid {
  margin-bottom: 50px;
}

.main-sponsor-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
  position: relative;
}

.main-sponsor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.main-sponsor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.main-sponsor-content {
  padding: 25px;
  text-align: center;
}

.main-sponsor-logo {
  height: 120px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-sponsor-logo img {
  max-height: 100%;
  max-width: 80%;
  transition: transform 0.3s ease;
  filter: grayscale(15%);
}

.main-sponsor-card:hover .main-sponsor-logo img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.main-sponsor-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.main-sponsor-card:hover .main-sponsor-name {
  color: var(--primary-color);
}

.main-sponsor-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-sponsor-links {
  margin-top: 15px;
}

.sponsor-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(141, 192, 69, 0.15);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.sponsor-link i {
  font-size: 1rem;
}

.sponsor-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* Regular sponsors styling - 3 column grid */
.regular-sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.sponsor-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sponsor-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.sponsor-card-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: rgba(248, 249, 250, 0.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sponsor-card-logo img {
  max-height: 80%;
  max-width: 80%;
  transition: transform 0.3s ease;
  filter: grayscale(20%);
}

.sponsor-card:hover .sponsor-card-logo img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.sponsor-card-content {
  padding: 15px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sponsor-card-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.sponsor-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.sponsor-card-link {
  display: inline-block;
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.sponsor-card-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .regular-sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .sponsors-section {
    padding: 50px 0;
  }
  
  .main-sponsor-logo {
    height: 100px;
  }
}

@media (max-width: 575px) {
  .regular-sponsors-grid {
    grid-template-columns: 1fr;
  }
  
  .main-sponsor-card {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Become a sponsor section */
.become-sponsor-section {
  position: relative;
  overflow: hidden;
}

.become-sponsor-card {
  background: linear-gradient(135deg, rgba(141, 192, 69, 0.08), rgba(249, 178, 26, 0.08));
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease;
}

.become-sponsor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.become-sponsor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="3" cy="3" r="1.5" fill="%238dc045" opacity="0.2"/></svg>');
  background-size: 60px 60px;
  z-index: -1;
  opacity: 0.5;
}

.become-sponsor-title {
  color: var(--primary-dark);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.become-sponsor-card .btn {
  margin-top: 20px;
  padding: 12px 30px;
  font-weight: 600;
}

/* Animation for sponsor cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-card {
  animation: fadeInUp 0.5s ease forwards;
}

/* Add animation delay for staggered effect */
.animate-card-delay-1 { animation-delay: 0.1s; }
.animate-card-delay-2 { animation-delay: 0.2s; }
.animate-card-delay-3 { animation-delay: 0.3s; }
.animate-card-delay-4 { animation-delay: 0.4s; }
.animate-card-delay-5 { animation-delay: 0.5s; }
.animate-card-delay-6 { animation-delay: 0.6s; }

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 40px 0;
    background-color: var(--background-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.breadcrumbs h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-color);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumbs ol li {
    display: flex;
    align-items: center;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: var(--text-light);
}

.breadcrumbs ol li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs ol li a:hover {
    color: var(--primary-dark);
}

.breadcrumbs ol li:last-child {
    color: var(--text-light);
}

.breadcrumbs-subtitle {
    color: var(--text-light);
    margin: 10px 0 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .breadcrumbs h2 {
        font-size: 1.75rem;
        margin-bottom: 5px;
    }

    .breadcrumbs ol {
        font-size: 0.85rem;
    }

    .breadcrumbs-subtitle {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Inner Page Header
--------------------------------------------------------------*/
[class$="-hero"] {
    background-color: var(--primary-color);
    padding: 40px 0;
    margin-bottom: 40px;
}

[class$="-hero"] .page-title {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

[class$="-hero"] .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 10px 0 0;
}

@media (max-width: 768px) {
    [class$="-hero"] {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    [class$="-hero"] .page-title {
        font-size: 1.8rem;
    }

    [class$="-hero"] .lead {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Cookie Consent
--------------------------------------------------------------*/
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    white-space: nowrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalShow 0.3s ease-out;
}

@keyframes modalShow {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.cookie-modal-close:hover {
    color: var(--text-color);
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-option {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option-text h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.cookie-option-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Custom Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: var(--primary-color);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: right;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-modal-content {
        margin: 0 10px;
    }
}

/*--------------------------------------------------------------
# Information Cards Styling
--------------------------------------------------------------*/
.info-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card:hover::before {
  width: 8px;
}

.info-card.highlight {
  background-color: rgba(141, 192, 69, 0.05);
}

.info-card.highlight::before {
  background-color: var(--secondary-color);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(141, 192, 69, 0.1);
  margin-bottom: 20px;
}

.info-card.highlight .info-icon {
  background-color: rgba(249, 178, 26, 0.1);
}

.info-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.info-card.highlight .info-icon i {
  color: var(--secondary-color);
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.info-card p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.info-card p:last-of-type {
  margin-bottom: 0;
}

.info-card .btn {
  transition: all 0.3s ease;
}

.info-card .btn:hover {
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .info-card {
    padding: 25px;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
  }
  
  .info-icon i {
    font-size: 1.5rem;
  }
  
  .info-card h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Volunteer Page Styling
--------------------------------------------------------------*/
.volunteer-grid {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.volunteer-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--secondary-color);
}

.volunteer-task {
  background-color: rgba(141, 192, 69, 0.05);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.volunteer-task:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(141, 192, 69, 0.1);
}

.volunteer-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.volunteer-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.volunteer-task h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-color);
}

.cta-card {
  background: linear-gradient(135deg, rgba(141, 192, 69, 0.1), rgba(249, 178, 26, 0.1));
  border-radius: var(--border-radius);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.cta-card h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.cta-card p {
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

.cta-card .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .volunteer-icon {
    width: 50px;
    height: 50px;
  }
  
  .volunteer-icon i {
    font-size: 1.2rem;
  }
  
  .volunteer-task {
    padding: 15px;
  }
  
  .volunteer-task h4 {
    font-size: 1rem;
  }
  
  .cta-card {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Route Description Page Styling
--------------------------------------------------------------*/
.map-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-container {
  flex-grow: 1;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.map-container iframe {
  display: block;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  width: 100%;
  height: 450px;
  border: none;
}

.map-actions {
  padding: 20px;
  text-align: center;
  background-color: rgba(141, 192, 69, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.map-actions .btn {
  transition: all 0.3s ease;
}

.map-actions .btn:hover {
  transform: translateY(-3px);
}

.location-details {
  margin-top: 25px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.location-item:last-child {
  margin-bottom: 0;
}

.location-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 5px;
}

.location-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text-color);
}

.location-item p {
  margin: 0;
  color: var(--text-light);
}

.transport-options {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.transport-options::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color);
}

.transport-options h3 {
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.transport-card {
  background-color: rgba(141, 192, 69, 0.05);
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.transport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.transport-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-bottom: 15px;
}

.transport-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.transport-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.transport-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .map-container iframe {
    height: 350px;
  }
  
  .transport-icon {
    width: 60px;
    height: 60px;
  }
  
  .transport-icon i {
    font-size: 1.5rem;
  }
  
  .transport-card {
    padding: 20px 15px;
  }
  
  .transport-card h4 {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# House Rules Styling
--------------------------------------------------------------*/
.rules-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.rules-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color);
}

.rules-intro {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.rules-intro p:last-child {
  margin-bottom: 0;
  font-weight: 600;
}

.rules-list {
  counter-reset: rule-counter;
}

.rule-item {
  display: flex;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 10px;
}

.rule-item:hover {
  background-color: rgba(141, 192, 69, 0.05);
  transform: translateX(5px);
}

.rule-item:last-child {
  margin-bottom: 0;
}

.rule-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.rule-text {
  flex-grow: 1;
  padding-top: 8px;
}

.rule-text p {
  margin-bottom: 0;
}

.rules-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.rules-footer a {
  color: var(--primary-color);
  font-weight: 600;
}

.rules-footer a:hover {
  text-decoration: underline;
}

.rules-version {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 10px;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .rules-card {
    padding: 20px;
  }
  
  .rule-item {
    padding: 5px;
  }
  
  .rule-number {
    min-width: 35px;
    height: 35px;
    font-size: 1rem;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# Terms and Conditions Styling
--------------------------------------------------------------*/
.terms-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.terms-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color);
}

.terms-intro {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.terms-sections {
  counter-reset: terms-counter;
}

.terms-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.terms-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.terms-section h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.terms-content {
  padding-left: 15px;
}

.terms-content p {
  margin-bottom: 15px;
  text-align: justify;
}

.terms-content p:last-child {
  margin-bottom: 0;
}

.terms-content ul, 
.terms-content ol {
  margin-bottom: 15px;
  padding-left: 20px;
}

.terms-content ul li, 
.terms-content ol li {
  margin-bottom: 5px;
}

.terms-content ul li:last-child, 
.terms-content ol li:last-child {
  margin-bottom: 0;
}

.terms-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.terms-footer a {
  color: var(--primary-color);
  font-weight: 600;
}

.terms-footer a:hover {
  text-decoration: underline;
}

.terms-version {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 10px;
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .terms-card {
    padding: 20px;
  }
  
  .terms-section h3 {
    font-size: 1.2rem;
  }
  
  .terms-content {
    padding-left: 10px;
  }
}

/*--------------------------------------------------------------
# Privacy Policy Styling
--------------------------------------------------------------*/
.privacy-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.privacy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color);
}

.privacy-intro {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  font-size: 1.1rem;
}

.privacy-sections {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.privacy-section {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.privacy-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.privacy-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(141, 192, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.privacy-section h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  padding-right: 60px;
}

.privacy-content {
  color: var(--text-light);
}

.privacy-content p {
  margin-bottom: 15px;
}

.privacy-content p:last-child {
  margin-bottom: 0;
}

.privacy-content ul {
  list-style: none;
  margin-bottom: 15px;
  padding-left: 5px;
}

.privacy-content ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.privacy-content ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.privacy-content a {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.privacy-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.privacy-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: right;
}

.privacy-version {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .privacy-card {
    padding: 20px;
  }
  
  .privacy-section {
    padding: 20px;
  }
  
  .privacy-icon {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
  }
  
  .privacy-icon i {
    font-size: 1.2rem;
  }
  
  .privacy-section h3 {
    font-size: 1.2rem;
    padding-right: 50px;
  }
}