/*---NAVBAR----------------------------------------------------------------------------------------------------*/
.navbar {
    position: fixed;
    top: 3px;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* logo left, menu center/left, social right */
    padding: 0 3px;
    /*background: rgba(255, 255, 255, 0.2);*/
    /* Semi-transparent white background */
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 35px;
    box-sizing: border-box;

    transition: top 0.3s ease;
}

.nav-hidden {
    top: -100px;
}

.navbar .logo {
    width: 60px;
    color: #e1ca7a;
    user-select: none;
    cursor: default;
    border-radius: 50%;
}

.navbar .menu {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
}

.navbar .menu::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.navbar .menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 5px 7px;
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.navbar .menu a:hover,
.navbar .menu a:focus,
#buypass {
    background-color: #e1ca7a;
    color: white;
    outline: none;
}

.navbar .social-icons {
    display: flex;
    gap: 3px;
}

.navbar .social-icons a img {
    width: 30px;
    height: 30px;
    transition: filter 0.3s;
    filter: grayscale(100%);
}
.navbar .social-icons img {
    width: 30px;
    height: 30px;
    transition: filter 0.3s;
    filter: grayscale(100%);
    cursor: pointer;
}

.navbar .social-icons a:hover img,
.navbar .social-icons a:focus img {
    filter: none;
    outline: none;
    cursor: pointer;
}

#scroll-image {
    position: absolute;
    top: 15px;
    left: 88vw;
    width: 40px;
    height: 40px;
    z-index: 1000;
    cursor: pointer;
}
/*---FOOTER----------------------------------------------------------------------------------------------------*/
.footer {
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 20px 20px;
    font-family: 'Arial', sans-serif;
}

.footer h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #f5f5f5;
}

.footer .social {
    margin-bottom: 20px;
}

.footer .social a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer .social a img {
    width: 40px;
    height: 40px;
    vertical-align: middle;
}

#icon-ig {
    width: 44px !important;
    height: 44px !important;
    vertical-align: middle;
}

#icon-whatsapp {
    width: 35px !important;
    height: 35px !important;
    vertical-align: middle;
}

.footer .social a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer .social a:last-child {
    font-size: 16px;
    color: #ccc;
    text-decoration: none;
}

.footer .social a:last-child:hover {
    color: #fff;
    text-decoration: underline;
}

.footer .copy {
    margin: 10px auto;
}

.footer .copy a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer .copy a:hover {
    text-decoration: underline;
    color: #fff;
}

.footer p {
    font-size: 14px;
    color: #aaa;
    margin: 5px auto;
}
/*---FORM----------------------------------------------------------------------------------------------------*/
#newsletter {
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%), url('../img2026/back/smoke.webp');
    background-size: auto;
    /* Ensures the image fits within the element */
    background-repeat: repeat-x;
    /* Prevents repeating the image */
    background-position: center;
    /* Centers the image */
    width: 100%;
}

.email-form {
    width: 80%;
    display: flex;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);

    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}

.email-form input[type="email"] {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 1rem;
    //outline: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    width: 60%;
}

.email-form button {
    padding: 12px 20px;
    border: none;
    background-color: #e1ca7a;
    font-weight: bold;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 8px;
}

.email-form button:hover {
    background-color: #ff4b4b;
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .email-form {
        flex-direction: column;
    }

    .email-form button {
        width: 80%;
        border-radius: 0 0 8px 8px;
    }
}
/*---J&J------------------------------------------------------------------------------------------------------*/
.jj_img {
    width: 85vw;
    padding-top: 10px;
    padding-bottom: 10px;
}
a img {
    border: none;
    cursor: pointer;
}
#jj-article {
    display: none;
}

#jj-article-mobile {
    display: block;
}
#timetable{
    opacity: 1;
    max-width: 100vw;
    height: unset;
}
#pic_timetable{
    width: unset;
    height: unset;
}
/*---HOTEL----------------------------------------------------------------------------------------------------*/
.hotel_price {
    width: 100%;
    height: auto;
}

.hotel_img {
    width: 50vw;
    height: 30vw;
}
/*---MAP----------------------------------------------------------------------------------------------------*/
#map-section {
    width: 99%;
    height: 30vh;
    max-height: 300px;
    padding: 0;
    border: 2px solid #e1ca7a;
}

#googlemap {
    width: 100%;
    height: 100%;
}
/*---TABS----------------------------------------------------------------------------------------------------*/
.tabs {
    display: flex;
    cursor: pointer;
    margin-bottom: 0.5em;
    justify-content: center;
    width: 95%;
    font-weight: bold;
}

.tab {
    padding: 10px 20px;
    border: 1px solid #e1ca7a;
    border-bottom: none;
    background: #f0f0f0;
    margin-right: 5px;
}

.tab.active {
    background: #e1ca7a;
    font-weight: bold;
}

.tab-content {
    display: none;
    //border: 1px solid;
    padding: 1em;
    justify-content: center;
    width: 90%;
    min-height: 200px;
}

.tab-content.active {
    display: block;
}

details {
    margin-bottom: 1em;
}
/*---ARTIST-SECTION----------------------------------------------------------------------------------------------------*/
.div-hover {
    position: relative;
    display: inline-block;
}

.artist-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.middle {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.insta-icon {
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: opacity 0.5s;
    cursor: pointer;
}
/*---CAROUSEL----------------------------------------------------------------------------------------------------*/
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overflow-x: auto;
    gap: 2px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar */
}

.carousel-item {
    flex: 0 0 calc(100% - 20px);
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
}

/* Show 2 items on tablets */
@media (min-width: 600px) {
    .carousel-item {
        flex: 0 0 calc(50% - 20px);
    }
}

/* Show 3 items on desktops */
@media (min-width: 900px) {
    .carousel-item {
        flex: 0 0 calc(33.3333% - 20px);
    }
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}