:root {
    --municipality-teal: #1773b0;
    --municipality-dark: #d9dbe678;
}

.tourism-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px;
}

.tourism-title {
    color: var(--municipality-teal);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: right;
}

.tourism-description {
    font-size: 1.15rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 50px;
    color: #444;
}

/* Gallery Widget Container */
.gallery-widget {
    /* background-color: var(--municipality-teal); */
    box-shadow: 5px 3px 20px gray;
    border-radius: 40px;
    padding: 40px;
    position: relative;
    overflow: visible;
    border: 2px solid #ddd;
    user-select: none;
}

/* Dark square accents */
.corner-accent {
    position: absolute;
    width: 45px;
    height: 50px;
    background-color: var(--municipality-dark);
    border-radius: 0 35px 0 0;
    top: 15px;
}

.corner-accent.right {
    right: 15px;
}

.corner-accent.left {
    left: 15px;
    border-radius: 35px 0 0 0;
}

/* Main Image Styles */
.main-image-container {
    position: relative;
    text-align: center;
    padding: 20px 0;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: opacity 0.4s ease-in-out;
}

.image-caption {
    /* color: white; */
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
    min-height: 2.5rem;
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.2s;
    font-size: 28px;
    /* color: white; */
}

.nav-arrow:hover {
    opacity: 0.7;
}

.nav-arrow.right {
    right: 30px;
}

.nav-arrow.left {
    left: 30px;
}
/* Thumbnails Footer Area */
.thumbnails-container {
    background-color: white;
    border-radius: 25px;
    padding: 20px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.thumbnail-img {
    width: calc(33.33% - 14px);
    aspect-ratio: 1.6;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnail-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .tourism-title {
        font-size: 2rem;
    }

    .nav-arrow {
        width: 10px;
    }
    .nav-arrow.right {
        right: 10px;
    }

    .gallery-widget {
        padding: 20px;
    }

    .thumbnails-container {
        gap: 10px;
        padding: 10px;
    }

    .main-image-container {
        min-height: 350px;
    }

    .main-image {
        max-width: 250px;
        height: 250px;
    }
}
