@charset "utf-8";
/* CSS Document */

 
    
    
    /* Fullscreen expanded overlay */
.image-overlay {
    position: fixed;
    top: 50%;
    left: 50%;

    width: 60vw;
    max-width: 1000px;

    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;

    z-index: 1000;
    transition: all 0.4s ease;
    pointer-events: none;

    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .image-overlay {
        width: 95vw;
        height: 90vh;

        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);

        border-radius: 8px;
    }

    .image-overlay img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}



/* Background dim */
.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85); /* darker for premium look */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 999;
    pointer-events: none;
    cursor: pointer;
}

/* Show overlay */
.image-overlay:target {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

/* Show background */
.image-overlay:target + .overlay-bg {
    opacity: 1;
    pointer-events: auto;
}

/* Close button */
.image-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    z-index: 1100;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Hover effect for close button */
.image-overlay .close-btn:hover {
    color: #d4af37; /* gold accent to match booking button */
    background: rgba(0,0,0,0.6);
    transform: scale(1.1);
}

/* Optional: text overlay inside expanded image */
.image-overlay .overlay-text {
    position: absolute;
    bottom: 40px;
    left: 20px;
    color: #fff;
    font-size: 38px;
    font-weight: lighter;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}
    
  
    
   
    
    