.vulciModalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

#vulciModalOverlay.fade-in {
    display: block;
}

#vulciModalOverlay.fade-in.visible {
    opacity: 1;
}

.vulciModal {
    background: white;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    padding: 30px;
}

.vulciModal.show {
    opacity: 1;
    visibility: visible;
}

.vulciModal.show img {
    max-height: 500px;
}

.vulciModalHeader {
    padding: 0;
    flex-shrink: 0;
    line-height: 1;
    margin-bottom: 30px;
}

.vulciModalTitle {
    font-weight: 600;
    margin: 0;
    font-size: 32px;
    text-transform: uppercase;
}

.vulciModal-icon {
    min-height: 80px;
    margin-bottom: 15px;
}

.close-btn {
    position: absolute;
    background: #222;
    box-shadow: none;
    border-radius: 0;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.close-btn:hover,
.close-btn:active,
.close-btn:focus {
    background: #000;
    padding: 0;
}

.vulciModalBody {
    display: flex;
    flex: 1;
    overflow: hidden;
    padding: 0;
    min-height: 0;
}

.vulciModalTitle {
    color: #000;
}

.vulciModalContent {
    line-height: 1.6;
    color: #000;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.container {
    margin: 0 auto;
    padding: 0;
}

h1 {
    text-align: left;
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#map {
    width: 100%;
    height: 500px;
}

#content-area {
    max-width: 1300px;
    margin: 30px auto;
    padding: 0;
    background: white;
    min-height: 300px;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

#content-area.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.location-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 25px;
    text-transform: uppercase;
    padding-right: 5px;
}

.location-title,
.location-subtitle {
    font-size: 30px !important;
    font-weight: 700;
    font-style: italic;
    margin: 0 !important;
}

.location-subtitle {
    font-weight: 400;
}

.swiper-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.swiper-slide {
    padding: 20px;
    text-align: left;
    border-radius: 5px;
    border: solid 4px #BEAB93;
    display: flex;
    flex-direction: column;
    height: auto;
    cursor: -webkit-grab;
    cursor: grab;
}

.swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px !important;
    cursor: -webkit-pointer;
    cursor: pointer;
}

.slide-title {
    font-size: 25px;
    color: #000;
    font-weight: 700;
    margin-bottom: 15px !important;
}

.slide-description {
    font-size: 25px;
    color: #000;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 15px !important;
}

.slide-details {
    color: #000;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #BEAB93 !important;
    width: 44px !important;
    height: 44px !important;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #BEAB93 !important;
    color: white !important;
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold !important;
}

.swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #ddd !important;
    opacity: 1 !important;
    margin: 0 5px !important;
    transition: background 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background: #BEAB93 !important;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    #map {
        height: 400px;
    }

    .location-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .swiper-container {
        --swiper-slides-per-view: 1;
    }
}
