/* css/style.css */
body { 
    font-family: 'Quicksand', sans-serif; 
    background-color: #FFFDD0; 
    color: #2E5e55; 
    overflow-x: hidden;
}

.font-serif-elegant { font-family: 'Dancing Script', cursive; }

.map-container {
    border: 2px solid #C7A45A;
    padding: 10px;
    background: #FFF;
    box-shadow: 0 10px 25px rgba(42, 3, 6, 0.2);
    border-radius: 1.5rem;
}

.btn-gold {
    background-color: #C7A45A;
    color: #2A0306;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-gold:hover {
    background-color: #e0bc7a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(199, 164, 90, 0.4);
}

.fade-in { animation: fadeIn 2s ease-in; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.swiper-pagination-bullet-active { background-color: #C7A45A !important; }
.swiper-button-next, .swiper-button-prev { color: #FFFDD0 !important; }