
body {
    background-color: #003333;
    color: #ffffff;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Make the hamburger icon #ff6600 (orange) */
.navbar-toggler {
    border-color: #ff6600;
    position: absolute;
    right: 10px;
}

.navbar-toggler-icon {
    filter: invert(46%) sepia(88%) saturate(3100%) hue-rotate(1deg) brightness(99%) contrast(105%);
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-family: "Ribeye", serif;
    font-weight: 400;
}

a {
    color: #ffffff;
}




/* Mobile menu items */
/* --- Top-level nav items --- */
.navbar-nav > li {
    border: 1px solid #33cccc;
    border-radius: 6px;
    background-color: rgba(51, 204, 204, 0.1);
    margin: 2px 5px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav > li > a {
    color: #ffffff;
    font-family: "Ribeye", serif;
    font-size: 1.3rem;
    padding: 6px 18px;
    text-decoration: none;
    display: block;
}

.navbar-nav > li > a.nav-link.active {
    color: #33ff00;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    color: #33cccc;
    outline: none;
}

/* Hover/active state */
.navbar-nav > li:hover,
.navbar-nav > li:focus-within {
    background-color: rgba(51, 204, 204, 0.2);
}

/* --- Frosted Dropdown Menu --- */
.navbar-nav .dropdown-menu {
    background-color: rgba(51, 204, 204, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 0;
    min-width: 220px;

    /* this creates the gap below the parent li */
    margin-top: 4px; /* <-- new line */
}

/* Dropdown Items */
.navbar-nav .dropdown-menu .dropdown-item {
    background: transparent;
    color: #fff;
    font-family: "Ribeye", serif;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 6px 18px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
    background-color: rgba(51, 204, 204, 0.2);
    color: #33cccc;
}

/* Optional: light dropdown caret arrow */
.navbar-nav .dropdown-toggle::after {
    filter: brightness(200%);
}





/* Desktop Menu */
@media (min-width: 640px) {
    /* --- Top-level nav items --- */
    .navbar-nav > li {
        margin: 0 5px;
    }

    .navbar-nav > li > a {
        padding: 12px 18px;
    }

    /* --- Frosted Dropdown Menu --- */
    .navbar-nav .dropdown-menu {
        border: 1px solid #33cccc;
    }

    /* Dropdown Items */
    .navbar-nav .dropdown-menu .dropdown-item {
        text-align: left;
    }

}








.content p, .content li {
    font-size: 1.3rem;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
}




.btn.btn-primary {
    background-color: #ff6600;
    border-color: #ff6600;
    font-size: 1.3rem;
    font-weight: bold;
}

.btn.btn-primary:hover {
    background-color: #ff9900;
    border-color: #ff9900;
}




footer p, footer a i {
    color: #33cccc;
}

footer a i:hover {
    color: #33ff00;
}




#festivalTabs {
    border-bottom: none;
    margin-left: 10px;
}

#festivalTabs .nav-link {
    background-color: rgba(51, 204, 204, 0.2);
    /*border: 1px solid #33cccc;*/
    border-bottom: 0;
    color: rgba(51, 204, 204, 0.4);
    font-family: "Ribeye", serif;
    font-size: 0.9rem;
    font-weight: bold;
    margin-right: 4px;
}

#festivalTabs .nav-link.active {
    border: none;
    color: #33ff00;
}

#festivalTabsContent {
    border: none;
}

#festivalTabsContent .card {
    background-color: rgba(51, 204, 204, 0.2);
    border: 0;
}

#festivalTabsContent .card h3 {
    color: #ff6600;
}

@media (min-width: 640px) {
    #festivalTabs .nav-link {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    #festivalTabs .nav-link {
        font-size: 1.2rem;
    }
}