.destinasi-section {
    background: var(--zinc);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.8;
    overflow-x: hidden;
    padding-top: 6rem;
}

.destinasi-header-grid {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0px;
    display: grid;
    grid-template-columns: 1fr;
}

.destinasi-header-grid .section-title {
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.destinasi-header-grid .section-title em {
    color: var(--gold);
    font-style: italic;
}

.destinasi-header-grid .divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
}
.map-container{
    padding-right: 1px;
    margin: -99px;
}

.map-region {
    fill: var(--dark-brown);
    stroke: var(--gold);
    stroke-width: 2;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-region:hover,
.map-region.active {
    fill: var(--gold) !important;
    stroke: var(--cream);
    stroke-width: 2.5;
}

.destination-card {
    background: var(--dark-brown);
    border: 1px solid rgba(212, 162, 80, 0.2);
    border-radius: 8px;
    padding: 10px; 
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.destination-card:hover {
    
    border-color: rgba(212, 162, 80, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 162, 80, 0.1);
}

.card-image-overlay {
    position: relative;
}

.card-image-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(35, 30, 25, 0.5));
    pointer-events: none;
    border-radius: 12px;
}

.dest-card-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.destination-card:hover .dest-card-title {
    color: var(--cream);
}

.dest-card-desc {
    font-family: 'Cormorant Garamond', serif;
    color: rgba(240, 224, 204, 0.9);
}

.dest-nav-btn {
    justify-content: space-around;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    box-shadow: none !important; 
}

.dest-nav-btn:hover {
    background: var(--gold);
    color: var(--brown-dark);
    box-shadow: none !important; 
}

.dest-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(212, 162, 80, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
    box-shadow: none !important;
}

.dest-dot.active {
    background-color: var(--gold) !important;
    transform: scale(1.25);
    border-color: var(--cream);
    box-shadow: none !important;
}

.btn-explore-map {
    display: inline-block;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 1px;
    margin-top: 1px;
    letter-spacing: 1px;
}

.btn-explore-map:hover {
    background: var(--gold);
    color: var(--dark-brown); /* Sesuaikan dengan variabel warna gelap Anda */
    box-shadow: 0 4px 15px rgba(212, 162, 80, 0.3);
}
.father{
    margin-bottom: -80px;
}
.great-father{
    margin-top: -45px;
}