/* Container Utama */
.site-plan-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.section-title {
    /* margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    color: #333; */

    font-size: 42px;
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.site-plan-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    cursor: zoom-in;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.site-plan-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.site-plan-img:hover {
    transform: scale(1.02);
}

.zoom-hint {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    border-radius: 20px;
}

/* CSS untuk Overlay (Modal) */
.overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.overlay-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    margin-top: 50px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}