/* Campground Map Page */
.camp-map-page {
    padding: 50px 0;
    background: #f4fbff;
}

.camp-map-header {
    text-align: center;
    margin-bottom: 30px;
}

.camp-map-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1f4e5f;
    margin-bottom: 10px;
}

.camp-map-header p {
    font-size: 1.05rem;
    color: #4d6a75;
    margin-bottom: 0;
}

.camp-map-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.camp-map-image {
    display: block;
    width: 100%;
    height: auto;
}

/* Map Markers */
.camp-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d8db3, #155e75);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 5;
}

.camp-hotspot:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.camp-hotspot span {
    pointer-events: none;
    line-height: 1;
}

/* Modal */
.camp-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.camp-modal.active {
    display: flex;
}

.camp-modal-content {
    position: relative;
    width: 100%;
    max-width: 760px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    animation: campFadeIn 0.2s ease;
}

.camp-modal-content img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    display: block;
}

.camp-modal-body {
    padding: 24px;
}

.camp-modal-body h3 {
    margin: 0 0 12px;
    font-size: 1.6rem;
    color: #1f4e5f;
}

.camp-modal-body p {
    margin: 0;
    font-size: 1rem;
    color: #4d6a75;
    line-height: 1.6;
}

.camp-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
}

.camp-modal-close:hover {
    background: rgba(0, 0, 0, 0.82);
}

@keyframes campFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .camp-map-page {
        padding: 35px 0;
    }

    .camp-map-header h1 {
        font-size: 1.9rem;
    }

    .camp-hotspot {
        width: 40px;
        height: 40px;
        font-size: 19px;
    }

    .camp-modal-body {
        padding: 18px;
    }

    .camp-modal-body h3 {
        font-size: 1.3rem;
    }

    .camp-modal-content img {
        max-height: 280px;
    }
}