@media (max-width:1120px) {

    .lang-button {
        --bs-btn-border-radius: 0;
    }
}

@media (max-width:650px) {

    .mobile-hidden {
        display: none;
    }
}

@media (max-width:610px) {
    .lang-button {
        width: 150px;
        --bs-btn-border-radius: 0;
        margin: 0px !important;
    }

    #langMenu {
        display: none !important;
        position: absolute;
        background: #ffffff00;
        z-index: 1000;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 10px 0;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        width: 95vw;
        text-align: center;
    }

    #langMenu.show {
        display: inline-block !important;
        flex-direction: column;
    }

    #langMenuToggle {
        display: inline-block !important;
    }
}

@media (min-width: 610px) {
    #langMenuToggle {
        display: none !important;
    }

    #langMenu {
        display: inline-table !important;
        position: static;
        background: none;
        box-shadow: none;
        width: auto;
        padding: 0;
    }
}

.bg-primary {
    background-color: #ffffff !important;
}

.btn-primary {
    background-color: green;
}

.btn-primary {
    border-color: rgb(0, 119, 0);
}

.image-source-link {
    color: #98C3D1;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

/* === Custom CSS Carousel === */
.carousel-custom {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 600px;
    overflow: hidden;
    margin-bottom: 3rem;
    background: #e6f2e6;
}

.carousel-custom-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.carousel-custom-slide {
    min-width: 100%;
    height: 100%;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.carousel-custom-slide.active {
    opacity: 1;
    position: relative;
    z-index: 2;
}

.carousel-custom-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.carousel-custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #cbffe7;
    font-size: 2.5rem;
    width: 48px;
    height: 48px;
    border-radius: 0;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: background 0.2s, opacity 0.2s, color 0.2s;
    box-shadow: none;
}
.carousel-custom-arrow:hover {
    background: rgba(25,135,84,0.08);
    color: #145c32;
    opacity: 1;
}
.carousel-custom-arrow.prev {
    left: 16px;
}
.carousel-custom-arrow.next {
    right: 16px;
}

.carousel-custom-indicators {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 11;
}
.carousel-custom-indicator {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: #fff;
    border: 2px solid #198754;
    opacity: 0.7;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s, border 0.2s;
    padding: 0;
}
.carousel-custom-indicator.active,
.carousel-custom-indicator:hover {
    background: #198753;
    opacity: 1;
    border-color: #198754;
}

@media (max-width: 768px) {
    .carousel-custom,
    .carousel-custom-slide img {
        height: 450px;
    }
}

@media (max-width: 575.98px) {
    .carousel-custom,
    .carousel-custom-slide img {
        height: 320px;
    }
}