.destinasi-hero {
    height: 60vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
}


.destinasi-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
    z-index: 1;
}


.destinasi-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.destinasi-hero h1 {
    font-size: 4em;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    z-index: 2; 
    position: relative;
}


.destinasi-layout {
    display: flex;
    flex-wrap: wrap; 
    gap: 40px;
    margin-left: 4%;
}


.destinasi-content {
    flex: 2; 
    min-width: 300px;
}


.destinasi-sidebar {
    flex: 1; 
    min-width: 300px;
    margin-right: 4%;
}


.destinasi-content h2, .destinasi-content h3 {
    color: #00796b;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}


.destinasi-sidebar .card {
    position: sticky;
    top: 20px;
}

.destinasi-sidebar .card h3 {
    color: #00796b;
    margin-bottom: 15px;
}

.destinasi-sidebar p {
    margin-bottom: 10px;
}


.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
}

.lightbox { display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); justify-content: center; align-items: center; }
.lightbox-content { max-width: 85%; max-height: 85%; animation: zoomIn 0.3s ease-in-out; }
.lightbox-close { position: absolute; top: 20px; right: 35px; color: #fff; font-size: 40px; font-weight: bold; cursor: pointer; }
@keyframes zoomIn { from { transform: scale(0.8); } to { transform: scale(1); } }



@media (max-width: 992px) {
    .photo-grid {
        column-count: 2;
    }
}

@media screen and (max-width: 768px) {
    .row {   
        flex-direction: column;
        padding: 10px;
    }
    .side {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .photo-grid {
        column-count: 1;
    }
}