font-size: 15px;@charset "utf-8";
/* CSS Document */



}.container1 {
     .container {
    display: flex;
    flex-wrap: wrap;      /* allow children to wrap on small screens */
    gap: 20px;            /* space between boxes */
    padding: 12px;
    justify-content: center;  /* center boxes horizontally */
    max-width: 1200px;       /* optional max width */
    margin: 0 auto;           /* center container on page */
}
    }

/* Container */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    margin: 0;
    padding: 10px 5px;
    box-sizing: border-box;
    justify-content: space-between;
    
    
}

.container2 {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    margin: 0;  
    box-sizing: border-box;
    justify-content: space-between;       
}






/* Boxes inside container */
.box1 {
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 20px;
/* image inside */
.box-image {
    width: 100%;
    height: 200px;          /* fixed visual height */
    overflow: hidden;       /* prevents distortion spill */
    border-radius: 10px;    /* optional rounded corners */
}.box-image img {
.image-box img {
    transition: transform 0.5s ease;
}

.image-box:hover img {
    transform: scale(1.1);
}    width: 100%;
    height: 100%;
    object-fit: cover;      /* ?? keeps image ratio, crops neatly */
    display: block;
}    flex: 1 1 45%;         /* each box takes ~45% of container width */
    box-sizing: border-box;
    text-align: center;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 18px;
    min-width: 300px;       /* prevents boxes from shrinking too small */
}

/* Images inside boxes scale automatically */
.box1 img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* optional: rounded corners */
}

.box {
      background: #f0f0f0;
      border: 1px solid #ccc;
      padding: 10px;
      flex: 1 1 320px;      /* grow, shrink, base width 200px */
      box-sizing: border-box;
      text-align: center;
      min-width: 150px;
    background-color: #ffffff;
    font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
       color: #000000;
    }

.box2 {
      background: #f0f0f0;
      border: 1px solid #ccc;
      padding: 10px;
      flex: 1 1 320px;      /* grow, shrink, base width 200px */
      box-sizing: border-box;
      text-align: center;
      min-width: 150px;
    background-color: #ffffff;
    font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
       color: #000000;
    }
.box3 {
      background: #f0f0f0;
      border: 1px solid #ccc;
      padding: 20px;
      flex: 1 1 320px;      /* grow, shrink, base width 200px */
      box-sizing: border-box;
      text-align: center;
      min-width: 150px;
    background-color: #ffffff;
  
       color: #000000;
    }

.box4 {
    background-color: #384F43;
    padding: 1px;
    flex: 1 1 250px;   /* slightly smaller so more can fit */
    min-width: 200px;
    box-sizing: border-box;
    text-align: center;
    color: #ffffff;
}

.box5 { 
  background: #8FAE96;
  padding: 2px;
  box-sizing: border-box;
  text-align: center;

  width: 50%;              /* 👈 makes it half the page */
  margin: 20px auto;       /* 👈 centers it horizontally */

  color: #000000;
}



.box_footer {
      background-color: #384F43;
        display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    margin: 0;
    padding: 10px 5px;
    box-sizing: border-box;
    justify-content: space-between;
    
}

@media (min-width: 768px) {
  .container {
    flex-direction: row; /* Side by side */
  }

    
    
    
    
    
    
    /* 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;
}

/* 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);
}
    
  
    
    /* cLIENT REVIEWS */
   .review-ticker {
    width: 100%;
    overflow: hidden;
    background: #2f4f4f; /* resort-style dark green */
    color: #fff;
    padding: 12px 0;
    position: relative;
}

.review-track {
    display: flex;
    width: max-content;
    animation: scrollReviews 35s linear infinite;
}

.review {
    padding: 0 40px;
    font-size: 16px;
    white-space: nowrap;
    font-style: italic;
}

/* Animation */
@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover (nice touch) */
.review-ticker:hover .review-track {
    animation-play-state: paused;
} 
    
    
    

    
    
   .sponsor-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

/* VIEWPORT (hides overflow) */
.carousel-viewport {
    width: 60%;
    overflow: hidden;
}

/* TRACK */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* LOGOS */
.carousel-track img {
    height: 60px;
    margin: 0 20px;
    object-fit: contain;
    flex-shrink: 0;
}

/* BUTTONS */
.carousel-btn {
    background: #3C5B4A;
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
}

.carousel-btn:hover {
    background: #2f4638;
} 
    
    
    
    
    
    