/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Times New Roman', serif;
    background-color: #001140;
    color: #fff;
}

.controls-container {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.music-controls {
    position: static;
}

.music-controls button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-controls button img {
    width: 24px;
    height: 24px;
}

.music-controls button:hover {
    background-color: rgba(255, 255, 255, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.5s; /* Gives a small delay after page load before starting animation */
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-logo {
    opacity: 0;
    animation: fadeInLogo 2s ease-out forwards;
    /* Logo starts fading in immediately on page load */
}

.btn-tickets {
    white-space: nowrap;
}

.language-switcher {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.language-switcher__current {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.language-switcher__current:hover {
    background: rgba(255, 255, 255, 0.3);
}

.language-switcher__current span {
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-transform: lowercase;
}

.language-switcher__dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1000;
}

.language-switcher__dropdown.active {
    display: flex;
}

.language-switcher__option {
    background: none;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.language-switcher__option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.testimonials {
    padding: 40px 0;
    background-color: #001140;
    color: #fff;
}

.testimonials-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 60px;
    position: relative;
}

.testimonial {
    position: relative;
    padding: 20px;
    max-width: 80%;
    display: flex;
    flex-direction: column;
}

.testimonial:first-child {
    justify-self: start;
}

.testimonial:last-child {
    justify-self: end;
}

.quote-icon {
    font-family: 'Bodoni 72', serif;
    font-size: 60px;
    line-height: 1;
    height: 60px;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-icon:first-child {
    top: 20px;
    left: -10px;
}

.quote-icon.closing {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.stars {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    margin-left: 20px;
    letter-spacing: 4px;
}

.testimonial blockquote {
    margin: 0;
    font-family: 'Bodoni 72', serif;
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .testimonials-container {
        gap: 40px;
    }

    .testimonial blockquote {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial {
        max-width: 100%;
    }


    .testimonial:first-child,
    .testimonial:last-child {
        justify-self: center;
    }

    .quote-icon {
        font-size: 60px;
    }

    .stars {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .testimonial blockquote {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonials-container {
        padding: 0 15px;
        gap: 40px;
    }

    .testimonial {
        padding: 15px;
        max-width: 100%;
    }

    .quote-icon {
        font-size: 60px;
    }

    .stars {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .testimonial blockquote {
        font-size: 1rem;
    }
}

.gallery {
    padding: 40px 0;
    background-color: #001140;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery .swiper {
    width: 100%;
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
    visibility: visible !important;
}

.gallery .swiper-slide {
    width: 600px;
    height: 450px;
    transition: all 0.3s ease;
    opacity: 0.4;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    visibility: visible !important;
}

.gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.3);
    visibility: visible !important;
}

.gallery .swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
    visibility: visible !important;
}

.gallery .swiper-button-next,
.gallery .swiper-button-prev {
    color: #fff;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 32, 91, 0.9);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery .swiper-button-next:after,
.gallery .swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.gallery .swiper-button-next {
    right: 20px;
}

.gallery .swiper-button-prev {
    left: 20px;
}

.gallery .swiper-button-next:hover,
.gallery .swiper-button-prev:hover {
    background-color: #fff;
    border-color: #fff;
    transform: scale(1.1);
}

.gallery .swiper-button-next:hover:after,
.gallery .swiper-button-prev:hover:after {
    color: #00205B;
}

.gallery .swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.gallery .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.gallery .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
    background: #fff;
}

/* Fullscreen Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 17, 64, 0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #00205B;
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    transform: scale(1.1);
    background-color: #fff;
    color: #00205B;
}

@media (max-width: 1024px) {
    .gallery .swiper-slide {
        width: 400px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 40px 0;
    }

    .gallery .swiper {
        padding: 30px 0;
    }

    .gallery .swiper-slide {
        width: 300px;
        height: 225px;
    }

    .gallery .swiper-button-next,
    .gallery .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .gallery .swiper-button-next:after,
    .gallery .swiper-button-prev:after {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .gallery .swiper {
        padding: 20px 0;
    }

    .gallery .swiper-slide {
        width: 300px;
        height: 225px;
    }
}

/* Cookies Banner */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 17, 64, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies-banner.show {
    transform: translateY(0);
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookies-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookies-buttons {
    display: flex;
    gap: 10px;
}

.cookies-accept,
.cookies-decline {
    padding: 8px 20px;
    border: 1px solid #fff;
    border-radius: 4px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookies-accept:hover {
    background: #fff;
    color: #001140;
}

.cookies-decline {
    opacity: 0.7;
}

.cookies-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        text-align: center;
    }

    .cookies-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Footer Links */
.footer-links {
    margin-top: 20px;
    text-align: center;
}

.footer-links a {
    color: #001140;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #003366;
}

@media (max-width: 768px) {
    .footer-links {
        margin-top: 15px;
    }
    
    .footer-links a {
        margin: 0 10px;
        font-size: 14px;
    }
} 