
/* Location.html */

.location-body {
    background-color: rgb(250, 247, 247);
    color: white;
    
}




.location-section {
    padding: 70px;
    height: 100%;
    min-height: 100vh;
}

.location-heading h1 {
    color: #191919;
    margin-top: 50px;
    font-size: 25px;
    margin-bottom: 20px;
    font-weight: 500;
}
.location-heading hr{
    width: 60px;
    height: 3px;
    background-color: #e7731a;
    border: none;
    margin: 20px;
    
    
}



.location-detail h2 {
    
    color:black;
    font-size: 30px;
    font-family:poppins;
    padding-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: auto;
}

.gallery-left {
  height: 500px;
  overflow: hidden;
  border-radius: 14px;
}
.gallery-small {
  height: 240px;
  overflow: hidden;
  border-radius: 14px;
}

.gallery-left img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  display: block;
  object-fit: cover; 
}

.gallery-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 400;
}

.gallery-small img {
  width: 100%;
  height: 100%;
  min-height: 217px;
  object-fit: cover;
  display: block;
  object-fit: cover; 
}

.gallery-left:hover img,
.gallery-small:hover img {
  
   transform: scale(1.06);
}
.gallery-left img,
.gallery-small img {
  transition: transform 0.4s ease;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-left img {
    min-height: 280px;
  }

  .gallery-small img {
    min-height: 200px;
  }
}

/* THUMBNAILS CONTAINER */
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

/* THUMB IMAGE */
.gallery-thumbs img {
  width: 100%;
  height: 140px;          /* FIXED HEIGHT */
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.gallery-thumbs img:hover {
  transform: scale(1.05);
}


.location-img img {
    box-shadow: 5px 5px 10px #3b3737;
    height: 400px;
    width: 350px;
    margin-top: 30px;
    margin-bottom: 10px;
    border-radius: 15px;
}

.location-img p{
    color: #191919;
    font-size: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.stars i {
    font-size: 20px;
    color: rgb(246, 198, 8);
}

/* About content*/

.yacht-wrapper {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;

  display: flex;              /* ✅ IMPORTANT */
  gap: 60px;
  align-items: flex-start;
}
.yacht-wrapper h2{
    padding:0%;
    color: #191919;
    font-size: 25px;
    font-weight: 500;
    
}

/* LEFT SIDE */
.yacht-left {
  flex: 2;
}
.yacht-left p{
  color: #191919;
  padding-bottom: 15px;
  
}
.yacht-left .meta {
  margin-top: 20px;
  
}

/* RIGHT INFO BOX */
.yacht-right {
  flex: 1;
  background: #bfbfbf;
  border-radius: 18px;
  padding: 30px;
  position: sticky;           /* OPTIONAL: stays visible */
  top: 100px;
}

.yacht-right h3 {
  margin-bottom: 25px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #999;
}

.book-btn {
  width: 190px;
  margin-top: 25px;
  padding: 12px;
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  
}

.book-btn:hover {
  background: #084298;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .yacht-wrapper {
    flex-direction: column;
  }

  .yacht-right {
    position: static;
  }
}

.features i {
  color: #e7731a;
  margin-right: 8px;
}
 .yacht-left ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #191919;
 }

 /* wHATSAPP FLOAT BUTTON */
 .whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}




/* Footer */

.footer {
    background: inherit;
    margin-top: 80px;
    background-color: #191919;
}

.foot {
    padding: 20px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;

}

.footlinks h4 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    position: relative;
}

.footlinks h4::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 70px;
    left: 0;
    bottom: -7px;
    background: white;
}

.footlinks ul li {
    margin-bottom: 15px;
}

.footlinks ul li a {
    font-size: 17px;
    color: #dddddd;
    display: block;
    transition: ease 0.30s;
}

.footlinks ul li a:hover {
    transform: translate(6px);
    color: white;
}

.social a {
    font-size: 25px;
    margin: 4px;
    height: 40px;
    width: 40px;
    color: rgb(21, 74, 74);
    background-color: white;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: ease 0.30s;
}

.social a:hover {
    transform: scale(1.2);
}

.end {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 12px;
}

.end p {
    font-size: 15px;
    color: white;
    letter-spacing: 1px;
    font-weight: 300;
}

/* ===============================
   MOBILE RESPONSIVE FIX
   SAME METHOD – NO REDESIGN
================================ */

@media (max-width: 768px) {

  /* PAGE PADDING */
  section,
  .location-section {
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  /* HEADING */
  .location-heading h1 {
    font-size: 22px;
    margin-top: 30px;
    margin-left: 19px;
  }

  .location-detail h2 {
    font-size: 24px;
  }

  /* GALLERY LAYOUT */
  .gallery-grid {
    grid-template-columns: 1fr;   /* stack */
    gap: 12px;
  }

  .gallery-left {
    height: 260px;
  }

  .gallery-small {
    height: 160px;
  }

  .gallery-right {
    grid-template-rows: 1fr 1fr;
    min-height: auto;
  }

  /* MAIN IMAGE */
  .gallery-left img {
    min-height: 260px;
  }

  /* SIDE IMAGES */
  .gallery-small img {
    min-height: 160px;
  }

  /* THUMBNAILS */
  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .gallery-thumbs img {
    height: 90px;
  }

  /* YACHT CONTENT */
  .yacht-wrapper {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }

  .yacht-left h2 {
    font-size: 22px;
  }

  .yacht-left p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* INFO BOX */
  .yacht-right {
    width: 100%;
    position: static;
    padding: 22px;
  }

  .yacht-right h3 {
    font-size: 18px;
  }

  .info-row span {
    font-size: 14px;
  }

  /* BUTTON */
  .book-btn {
    width: 100%;
    font-size: 16px;
    padding: 14px;
  }

  /* STARS */
  .stars i {
    font-size: 18px;
  }


}