@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif !important;
  /* background-color: rgb(255,255,255); */
  background-color: #f0f0f0 !important;
}

/* ===== GENERAL OVERLAY ===== */

body.no-scroll {
  overflow: hidden;
}

/* Fullscreen overlay */
.welcome-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.95));
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Hide state */
.welcome-overlay.hide {
  opacity: 0;
  visibility: hidden;
}

/* Inner card */
.welcome-overlay-inner {
  max-width: 520px;
  width: 100%;
  text-align: center;
  padding: 40px 24px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), rgba(10, 10, 10, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: welcome-pop 0.7s ease-out;
}

/* Logo */
.welcome-logo {
  width: 100px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}


/* Eyebrow text */
.welcome-eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: #3F5E4E;
  margin-bottom: 10px;
}


/* Title */
.welcome-title {
  font-family: "Marcellus", serif;
  font-size: 30px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Subtitle */
.welcome-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
}

.welcome-properties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 columns */
  gap: 6px 15px;
  /* space between rows & columns */
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  margin: 20px auto 20px;
  max-width: 480px;
  /* keep centered */
}

.welcome-subfooter {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.welcome-btn {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(120deg, #3F5E4E, #2C4236);
  color: #1b1b1b;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.welcome-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  background: linear-gradient(120deg, #2C4236, #3F5E4E);
}

/* ===== MOBILE (<= 768px) ===== */
@media (max-width: 768px) {
  .welcome-overlay {
    padding: 16px;
    align-items: center;
    /* move card a bit up on small screens */
  }

  .welcome-overlay-inner {
    max-width: 100%;
    padding: 28px 18px;
    border-radius: 20px;
  }

  .welcome-logo {
    width: 72px !important;
    height: 65px !important;
    margin-bottom: 6px;
  }

  .welcome-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .welcome-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .welcome-properties {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
    gap: 6px;
    font-size: 13px;
    max-width: 100%;
  }

  .welcome-subfooter {
    font-size: 12px;
    margin-top: 8px;
  }

  .welcome-btn {
    width: 100%;
    padding: 12px 20px;
  }
}

/* Pop animation */
@keyframes welcome-pop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Notification Floating Icon */
.notify-float {
  position: fixed;
  bottom: 105px;
  /* WhatsApp button eka ta uda */
  right: 22px;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.notify-float:hover {
  transform: scale(1.08);
}

/* Bell Icon */
.notify-icon {
  font-size: 22px;
  color: #333;
}

/* Red Notification Dot (Bigger Version) */
.notify-dot {
  position: absolute;
  top: 4px;
  /* adjust for regular bell */
  right: 1px;
  width: 14px;
  /* bigger dot */
  height: 14px;
  /* bigger dot */
  background: red;
  border-radius: 50%;
  border: 2px solid white;
  /* white outline more premium */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.35);
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .notify-float {
    bottom: 88px;
    right: 22px;
    width: 44px;
    height: 44px;
  }

  .notify-icon {
    font-size: 18px;
  }

  .notify-dot {
    width: 12px;
    height: 12px;
    top: 3px;
    right: 3px;
    border: 2px solid white;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero,
.booking {
  z-index: 2 !important;
  position: relative;
}

.hero {
  margin-top: -70px !important;
  position: relative;
  height: 95vh;
  background-image: url('../images/home/Beach-house-cover-1-scaled.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* Adjust alpha for brightness */
  z-index: 0;
  pointer-events: none;
}

.hero>* {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: "Marcellus", serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 100px;
  text-align: center;
  color: white !important;
}

.hero p {
  margin-top: 10px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


.booking {
  max-width: max-content;
  margin: -50px auto 0 auto;
  /*background-color: #800000;*/
  background-color: #1F2E27;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif !important;
}

.booking div {
  /*background-color: rgba(255, 255, 255, 0.1);*/
  background-color: #3F5E4E;
  padding: 10px;
  border-radius: 5px;
  color: white !important;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  min-width: 200px;
}

.booking div label {
  margin-right: 10px;
  color: white !important;
  margin-top: 5px !important;
  padding: 5px;
  border-radius: 3px;
  width: 100%;
  text-align: flex-start;
  font-size: 14px;
  min-width: 100px;
}

.booking select {
  color: white !important;
  /* background-color: #C3AC7E; */
  appearance: none;
  /* Modern browsers */
  -webkit-appearance: none;
  /* Safari, Chrome */
  -moz-appearance: none;
  /* Firefox */
  padding-right: 30px;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}




.booking select option:checked {
  /* background-color: #E8C873 !important; */
  color: white;
}

.booking div input,
.booking div select {
  width: 100%;
  padding: 5px;
  border: none;
  color: white !important;
  background-color: #3F5E4E;
  border-radius: 3px;
}

.booking .book-btn {
  background-color: #3F5E4E;
  color: white;
  border: none;
  padding: 15px 25px;
  font-weight: 500 !important;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Montserrat', sans-serif !important;
  text-decoration: none !important;
}

.booking .book-btn:hover {
  background-color: #527A65;
}

.booking div input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}


/* About Section */
.about-section {
  max-width: 900px;
  margin: 100px auto;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  padding: 20px;
  color: #2e3a40;
  gap: 30px;
  margin-bottom: 300px !important;

}

.intro-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  color: #6c6c6c;
  font-size: 14px;
  letter-spacing: 1px;
}


.main-logo {
  width: 20% !important;
  height: 20% !important;
  filter: grayscale(1) brightness(1.0) !important;
  margin-bottom: 20px !important;
  position: relative;
}

@media (max-width: 768px) {
  .main-logo {
    width: 40% !important;
    height: 40% !important;
    margin-bottom: 15px !important;
  }
}

.about-section h2 {
  font-family: 'Marcellus', serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.about-section h2 span {
  color: #0d2b36;
}

.underline {
  width: 60px;
  height: 3px;
  background-color: #DAE6DF;
  margin: 20px auto;
}

.about-section .description {
  font-size: 16px;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
  color: #4a4a4a;
}

.about-slide {
  background-color: rgb(255, 255, 255);
  padding: 0;
  display: flex;
  margin-bottom: 20px !important;
  justify-content: center;
}

.about-gallery {
  position: relative;
  margin-top: -250px !important;
  display: flex;
  max-width: 1100px;
  align-items: center;
  margin-bottom: 100px !important;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.about-gallery.show-buttons .gallery-btn {
  opacity: 1;
  pointer-events: auto;
}

.gallery-track {
  display: flex;
  width: 1200px;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 10px;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track img {
  height: 500px !important;
  width: 350px !important;
  object-fit: cover;
  /* border-radius: 20px; */
  flex-shrink: 0;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(212, 212, 212);
  border: none;
  font-size: 28px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: black !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-btn.left {
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn.right {
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btn:hover {
  background-color: #e0e0e0;
}

/* Hotel room section */
.hotel-room-section {
  margin-top: -20px !important;
  padding: 30px 0;
  background-color: rgb(238, 236, 228) !important;
}

.hotel-room-text {
  text-align: center;
  margin: 50px auto;
  color: #2e3a40;
}

.hotel-room-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hotel-room-text h3 {
  font-size: 32px;
  font-family: 'Marcellus', serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.hotel-slider-container {
  width: 100%;
  margin: 50px auto;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.room-card {
  position: relative;
  height: 450px;
  margin: 0 20px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #8CA698
}

/* Make the center image bigger */
.slick-center .room-card {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  z-index: 1;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.room-card:hover img {
  transform: scale(1.4);
  opacity: 0.5;
}

.room-info {
  position: absolute;
  bottom: 50%;
  top: 40%;
  left: 0;
  right: 0;
  color: white;
  text-align: center;
  transition: opacity 0.3s ease;
  pointer-events: none;

}

/* Show info only for center slide */
.slick-center .room-info {
  opacity: 1;
}

.room-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 300;
  font-family: 'Marcellus'
}

.room-details {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.room-detail-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
}

.slick-prev {
  left: 30px;
}

.slick-next {
  right: 30px;
}

.slick-prev:before,
.slick-next:before {
  color: white;
  font-size: 50px;
}

.slick-dots {
  margin-top: 50px !important;
  padding-top: 20px !important;
  bottom: -50px !important;
}

.slick-dots li button:before {
  font-size: 10px;
}

/* hotel-room-container-static */
.hotel-room-container-static {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: nowrap;
  /* Force horizontal, no wrapping */
  overflow-x: auto;
  /* Allow scrolling if it doesn't fit */
  width: 100%;
  max-width: 100%;
  /* Use full width */
  padding: 0 20px;
  margin: 0 auto;
  padding-left: 80px;
  /* Shift content right */
}

.hotel-room-container-static .room-main {
  flex: 0 0 auto;
  max-width: 750px;
  display: flex;
  justify-content: center;
}

/* Modifying the text block to fit in flex */
.hotel-room-text {
  text-align: center;
  margin: 0 20px;
  flex: 0 0 auto;
  /* Keep text width natural */
  color: #2e3a40;
  min-width: 300px;
  /* Ensure title doesn't break inconveniently */
}

.hotel-room-container-static .room-card {
  transform: scale(1.05);
  /* Match the 'active' scale */
  z-index: 1;
  margin: 0;
  width: 750px;
  max-width: 90%;
}

.hotel-room-container-static .room-card img {
  filter: brightness(0.6);
  /* Slightly brighter than inactive */
  opacity: 1;
}

.hotel-room-container-static .room-card:hover img {
  filter: brightness(0.4);
  transform: scale(1.1);
}

.hotel-room-container-static .room-info {
  opacity: 1;
  /* Always show info */
}

.hotel-room-slider:hover .slick-prev,
.hotel-room-slider:hover .slick-next {
  opacity: 1 !important;
  pointer-events: auto;
}

/* hotel activity */
.hotel-activity {
  background-image: url('../images/home/village-taprobane.webp');
  /* Replace with your background image path */
  background-size: cover;
  background-position: center;
  height: 120vh;
  position: relative;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

/* Dark transparent overlay */
.hotel-activity-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 2rem;
}

.activity-content {
  color: white !important;
  margin-top: 700px;
  max-width: 800px;
  font-family: 'Marcellus', serif !important;
}

/* Top icon */
.activity-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Tagline text */
.tagline {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-top: 1rem;
  font-weight: 600 !important;
  margin-bottom: 2rem;
}

/* Heading */
.hotel-activity h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: white !important;
}

/* Paragraph subtext */
.subtext {
  font-size: 1rem;
  max-width: 700px;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}


/* Experience class in hotel activity */
.experience-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding-bottom: 60px;
}

.experience-card {
  flex: 1 1 30%;
  text-align: center;
}

.experience-card-down {
  flex: 1 1 30%;
  text-align: center;
}

.experience-card img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 10px;
}

.experience-card-down img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 60px;
}

.experience-card h3 {
  font-size: 24px;
  color: #1e2b38;
  margin-top: 20px;
  font-weight: bold;
  font-family: 'Marcellus', serif !important;
}

.experience-card-down h3 {
  font-size: 24px;
  color: #1e2b38;
  margin-top: 20px;
  font-weight: bold;
  font-family: 'Marcellus', serif !important;
}

.experience-card p {
  font-size: 15px;
  color: #444;
  font-family: 'Montserrat', sans-serif !important;
  margin-top: 10px;
  line-height: 1.6;
}

.experience-card-down {
  font-size: 15px;
  color: #444;
  font-family: 'Montserrat', sans-serif !important;
  margin-top: 10px;
  line-height: 1.6;
}


@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
    text-align: center;
    padding: 0 20px;
  }

  .hero p {
    font-size: 16px;
    text-align: center;
    padding: 0 20px;
  }

  .booking div {
    display: none;
  }

  .booking {
    flex-direction: column;
    align-items: center;
  }

  .about-section {
    margin-top: 30px;
    margin-bottom: 200px !important;
  }

  .about-section h2 {
    font-size: 32px;
  }

  .circle-icon::after,
  .circle-icon::before {
    width: 30px;
  }

  .about-gallery {
    padding: 20px;
    margin-top: -200px !important;
  }

  .gallery-track img {
    width: 250px !important;
    height: 300px !important;
  }
}

/* Hotel room section mobile*/

@media (max-width: 768px) {

  .hotel-room-slider {
    gap: 10px important;
  }

  room-main {
    margin-top: 10px !important;
  }

  .room-card {
    width: 100% !important;
    height: 350px;
    margin: 0 auto;
  }

  .room-card img {
    object-fit: cover;
    filter: brightness(0.6);
  }

  .room-info {
    top: 45%;
    bottom: auto;
    margin-top: -30px !important;
    padding: 0 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .room-title {
    font-size: 1.8rem;
  }

  .room-details {
    flex-direction: row;
    gap: 10px;
    font-size: 0.85rem;
  }

  .slick-dots {
    bottom: -20px !important;
    display: none !important;
  }
}

@media (max-width: 576px) {
  .room-card {
    height: 300px;
  }

  .room-info {
    top: 50%;
    bottom: auto;
  }

  .room-title {
    font-size: 1.5rem;
  }

  .room-details {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .hotel-activity {
    height: auto;
  }

  .hotel-activity-overlay {
    padding: 3rem 1rem;
  }

  .activity-content {
    margin-top: 50px;
    max-width: 100%;
  }

  .hotel-activity h1 {
    font-size: 2rem;
  }

  .subtext {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .experience-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px 40px;
    margin-top: 40px;
    color: white !important;
  }

  .experience-card,
  .experience-card-down {
    width: 100%;
  }

  .experience-card img,
  .experience-card-down img {
    height: 300px;
  }

  .experience-card h3,
  .experience-card-down h3 {
    font-size: 20px;
    color: white !important;
  }

  .experience-card p,
  .experience-card-down {
    font-size: 14px;
    color: white !important;
  }
}

@media (max-width: 576px) {
  .hotel-activity h1 {
    font-size: 1.6rem;
    color: white !important;
  }

  .experience-card img,
  .experience-card-down img {
    height: 250px;
  }
}

/* image grid section */
.image-grid-section {
  padding: 10px;
  background-color: white !important;
}

.image-grid-text {
  justify-content: center;
  text-align: center !important;
  gap: 30px;
  align-items: center;
  padding: 30px;
  margin-bottom: 30px;
}

.image-grid-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  color: #6c6c6c;
  font-size: 14px;
  gap: 20px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.image-grid-text h2 {
  font-family: 'Marcellus', serif !important;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}


.image-grid-text .description {
  font-size: 16px;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
  color: #4a4a4a;
  font-family: 'Montserrat', sans-serif !important;

}

.container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
  overflow-x: hidden;
}

.dynamic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 150px;
  gap: 15px;
  margin-bottom: 40px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #3a3a3a;
}

/* Random size classes */
.grid-item.size1 {
  grid-column: span 2;
  grid-row: span 2;
}

.grid-item.size2 {
  grid-column: span 1;
  grid-row: span 2;
}

.grid-item.size3 {
  grid-column: span 2;
  grid-row: span 1;
}

.grid-item.size4 {
  grid-column: span 2;
  grid-row: span 2;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

.grid-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-item:hover::after {
  opacity: 1;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.grid-item:hover .image-caption {
  transform: translateY(0);
}

.image-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.image-desc {
  font-size: 0.7rem;
  opacity: 0.8;
}

.load-more-container {
  text-align: center;
  padding: 40px 0;
}

.load-more-btn {
  background-color: #3F5E4E;
  border: none;
  color: #ffffff;
  padding: 12px 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.load-more-btn:hover {
  background-color: #2C4236;
}

/* Lightbox customizations */
.lightbox .lb-image {
  border: 5px solid white;
  border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 992px) {

  .dynamic-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    grid-auto-rows: 140px;
  }

  .grid-item.size3,
  .grid-item.size4 {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .image-grid-section {
    margin-top: 10px;
    background-color: #A09681;
  }

  .image-grid-text {
    padding: 20px 15px;
    gap: 20px;
    margin-bottom: 20px;
  }

  .image-grid-icon {
    gap: 10px !important;
    font-size: 12px;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
  }

  .image-grid-text h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .image-grid-text .description {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .dynamic-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 120px;
    gap: 10px;
  }

  .grid-item.size1,
  .grid-item.size2,
  .grid-item.size3,
  .grid-item.size4 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .image-caption {
    padding: 10px;
  }

  .image-title {
    font-size: 0.8rem;
  }

  .image-desc {
    font-size: 0.65rem;
  }
}

@media (max-width: 576px) {


  .dynamic-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 100px;
  }

  .grid-item.size1,
  .grid-item.size2,
  .grid-item.size3,
  .grid-item.size4 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .container {
    margin: 20px auto;
  }

  .load-more-btn {
    padding: 10px 25px;
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .dynamic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 150px;
  }
}

/* sports bar section */
.sports-bar {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #f5fbf5;
  overflow: hidden;
  margin-bottom: 60px !important;
}

.image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30% !important;
  height: 75% !important;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
}

.image-left {
  left: 0;
  margin-top: -25px;
}

.image-right {
  right: 0;
  margin-top: 25px;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  max-width: 800px;
  color: #2c2c2c;
  padding: 20px;
  height: 100%;
  width: 800px;
  backdrop-filter: blur(5px);
  background-color: #DAE6DF;
  border-radius: 8px;
}

.content-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
}

.content-text h2 {
  font-family: 'Marcellus', serif !important;
  font-size: 40px;
  font-weight: 600 !important;
  color: #1e2b38;
}

.content-text .tagline {
  font-size: 16px;
  letter-spacing: 4px;
  margin: 10px 0 20px;
  color: #555;
  text-transform: uppercase;
  font-weight: 500 !important;
  font-family: 'Montserrat', sans-serif !important;
}


.sport-logo {
  width: 20% !important;
  height: fit-content !important;
  filter: brightness(0) invert(1) !important;
  color: white !important;
}


.content-text .description {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 400px;
  font-weight: 500 !important;
  font-family: 'Montserrat', sans-serif !important;
}

.bar-btn {
  padding: 12px 38px;
  font-size: 15px;
  margin-top: 30px;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #DAE6DF 60%, #3F5E4E 100%);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, opacity 0.3s;
  box-shadow: 0 4px 16px rgba(26, 167, 180, 0.08);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  text-decoration: none !important;
}

.bar-btn:hover,
.bar-btn:active {
  background: linear-gradient(90deg, #3F5E4E 60%, #DAE6DF 100%);
  transform: scale(1.04);
  color: #fff;
}

.sports-bar:hover .bar-btn,
.sports-bar:focus-within .bar-btn {
  opacity: 1;
  pointer-events: all;
}

.image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: transparent !important;
}

/* Mobile responsive for sports-bar */
@media (max-width: 768px) {
  .sports-bar {
    height: auto;
    padding: 60px 20px;
    margin-bottom: 40px !important;
    background-color: #D2E0D3 !important;
  }

  .image {
    position: static;
    transform: none;
    width: 100% !important;
    height: 200px !important;
    margin: 20px 0;

  }

  .image-left,
  .image-right {
    margin: 0;
    margin-bottom: 10px !important;
  }

  .image img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .content {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    backdrop-filter: none;
    background-color: transparent;
    padding: 20px 10px;
    text-align: center;
    border-radius: 0;
    height: auto;
  }

  .content-text {
    height: auto;
    gap: 16px;
  }

  .content-text h2 {
    font-size: 28px;
  }

  .content-text .tagline {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .content-text .description {
    font-size: 14px;
    max-width: 100%;
    padding: 0 10px;
  }

  .sport-logo {
    width: 40% !important;
    margin-bottom: 20px;
  }

  .bar-btn {
    opacity: 1 !important;
    pointer-events: all !important;
    padding: 10px 20px;
    font-size: 12px !important;
    margin-top: 20px;
    z-index: 10;
    position: relative;
  }
}

/* Review Section */
.review-section {
  position: relative;
  background: url('../images/home/Thaproban-beach-house-bar.webp') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

}

.review-section-overlay {
  background: rgba(80, 80, 50, 0.5) !important;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 20px;
}

.quote-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.subtitle {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Marcellus', sans-serif !important;
  font-size: 15px;
  color: #ccc;
  font-weight: 600 !important;
  margin-bottom: 20px;
}

.review-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.review-text {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 2px;
  font-size: 15px;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif !important;
  color: #ddd;
  text-align: center;
}

.review-text.active {
  display: block;
}


.reviewer {
  margin-top: 20px !important;
  margin-bottom: 10px !important;
  gap: none !important;
}

.reviewer h4 {
  font-size: 15px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif !important;
  color: white !important;
  margin-bottom: 1px !important;
}

.reviewer span {
  font-size: 14px;
  color: #ddd;
  font-family: 'Montserrat', sans-serif !important;
}

.dots {
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: #999;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s;
}

.dot.active {
  background-color: white;
}

/* review section */
@media (max-width: 768px) {
  .review-section {
    height: auto;
    /* padding: 60px 20px; */
    background-position: center;
  }

  .review-section-overlay {
    flex-direction: column;
    padding: 20px;
  }

  .testimonial-content {
    max-width: 100%;
    padding: 10px;
  }

  .quote-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px;
  }

  .reviewer h4 {
    font-size: 14px;
  }

  .reviewer span {
    font-size: 13px;
  }

  .dot {
    height: 8px;
    width: 8px;
    margin: 0 4px;
  }
}

/* Kids Section*/
.kids-section {
  margin-top: 50px;
  position: relative;
  background: url('https://waves.ceylonlensmedia.com/wp-content/uploads/2025/07/kids-cover.jpg') no-repeat center center/cover;
  height: max-content !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px !important;
}

.kids-section-overlay {
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  display: flex;

  align-items: center;
  justify-content: center;
}

.kids-content {
  text-align: center;
  max-width: max-content !important;
  padding: 60px;
}

.intro-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #6c6c6c;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-logo {
  width: 20% !important;
  height: 20% !important;
  filter: grayscale(1) brightness(1.0) !important;
  margin-bottom: 20px !important;
  position: relative;
}

.kids-section h2 {
  font-family: 'Marcellus', serif;
  font-size: 35px;
  font-weight: 600;
  color: #0d2b36 !important;
  line-height: 1.2;
  margin-bottom: 30px !important;
}

.kids-section h2 span {
  color: #0d2b36 !important;
}

.kids-section .description {
  font-size: 16px;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
  font-weight: 500 !important;
  color: #4a4a4a !important;
}

.explore-container {
  text-align: center;
  padding: 40px 0;
}

.explore-btn {
  background-color: #800000 !important;
  border: none;
  color: #ffffff !important;
  padding: 12px 30px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  text-decoration: none !important;
}

.explore-btn:hover {
  background-color: #690000 !important;
}

.explore-btn span {

  font-size: 15px !important;
  font-weight: bold !important;
}

.kids-gallery-ordered {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: nowrap;
}

.kids-gallery-ordered img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* kids gallery */
.kids-gallery-ordered img:nth-child(1) {
  transform: rotate(-3deg);
}

.kids-gallery-ordered img:nth-child(2) {
  transform: rotate(1.5deg);
}

.kids-gallery-ordered img:nth-child(3) {
  transform: rotate(-1deg);
}

.kids-gallery-ordered img:nth-child(4) {
  transform: rotate(2deg);
}

/* Hover effect */
.kids-gallery-ordered img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}




/* kids section */
@media (max-width: 768px) {
  .kids-section {
    height: auto;
    /* padding: 60px 20px; */
    background-position: center;
  }

  .kids-section-overlay {
    flex-direction: column;
    padding: 20px;
  }

  .kids-content {
    max-width: 100%;
    padding: 10px;
  }

  .main-logo {
    width: 40% !important;
    height: 40% !important;
    margin-bottom: 15px !important;
  }

  .kids-section h2 {
    font-size: 24px;
    margin-bottom: 20px !important;
  }

  .kids-section .description {
    font-size: 14px;
    max-width: 100%;
    padding: 0 5px;
  }

  .explore-container {
    padding: 25px 0;
  }

  .explore-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .explore-btn span {
    font-size: 13px !important;
  }

  .kids-gallery-ordered {
    flex-wrap: wrap;
    gap: 20px;
  }

  .kids-gallery-ordered img {
    width: 90% !important;
    height: auto;
  }
}

/* Hotels  slider*/
.customSlider-carousel-container {
  position: relative;
  overflow: hidden;
  height: 550px;
  margin: 0 auto;
}

.customSlider-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  height: 100%;
}

.customSlider-carousel-item {
  position: relative;
  min-width: calc(100% / 3);
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: #fff;
  border-radius: 8px;
}

.customSlider-carousel-item:hover {
  transform: scale(1.02);
  z-index: 10;
}

.customSlider-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

.customSlider-image-text {
  font-family: 'Marcellus', serif;
  text-align: center;
  width: 100%;
  height: 140px;
  position: absolute;
  bottom: 0.5px;
  color: white !important;

  padding: 45px 15px;
  font-size: 35px;
  z-index: 2;
  transition: opacity 0.3s ease;
  border-radius: 0 0 8px 8px;
  box-sizing: border-box;
}

.customSlider-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg,
      rgba(63, 94, 78, 0.90) 0%,
      rgba(44, 66, 54, 0.90) 100%);
  color: white !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  transition: bottom 0.4s ease;
  text-align: center;
  border-radius: 8px;
  box-sizing: border-box;
}

.customSlider-overlay-title {
  font-family: 'Marcellus', serif;
  font-size: 32px !important;
  margin-bottom: 20px;
  color: white !important;
}

.customSlider-overlay-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px !important;
  margin-bottom: 30px;
  max-width: 80%;
  color: white !important;
}

.customSlider-explore-btn {
  font-family: 'Montserrat', sans-serif;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 10px 25px;
  border-radius: 4px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.customSlider-explore-btn:hover {
  background-color: #3F5E4E;
  color: white !important;
  text-decoration: none;
}

@media (max-width: 768px) {
  .customSlider-overlay {
    pointer-events: none !important;
  }

  .customSlider-explore-btn {
    pointer-events: auto !important;
  }

  .customSlider-explore-btn:hover {
    background-color: rgb(44, 66, 54) !important;
    color: white !important;
    text-decoration: none;
  }
}

.customSlider-carousel-item:hover .customSlider-overlay {
  bottom: 0;
}

.customSlider-carousel-item:hover .customSlider-image-text {
  opacity: 0;
}

.customSlider-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customSlider-carousel-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.customSlider-left-arrow {
  left: 20px;
}

.customSlider-right-arrow {
  right: 20px;
}

.hotels-text {
  text-align: center;
  padding-top: 40px;
  margin: 20px auto;
  /*color: #2e3a40;*/
  color: rgb(44, 66, 54);
}

.hotels-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hotels-text h3 {
  font-size: 32px;
  font-family: 'Marcellus', serif;
  font-weight: 600 !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .customSlider-carousel-item {
    min-width: calc(100% / 2);
  }

  .customSlider-overlay-text {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .hotels-text {
    padding-top: 25px;
    margin: 10px auto;
  }

  .hotels-text p {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .hotels-text h3 {
    font-size: 22px;
  }

  .customSlider-carousel-item {
    min-width: 100%;
  }

  .customSlider-carousel-container {
    height: 350px;
  }

  .customSlider-image-text {
    font-size: 16px !important;
    text-align: center;
    justify-content: center;
  }

  .customSlider-overlay {
    padding: 20px;
  }

  .customSlider-overlay-title {
    margin-top: 10px !important;
    font-size: 18px !important;
  }

  .customSlider-overlay-text {
    font-size: 12px !important;
  }
}

/* partnership hotels logo loop */
.logo-loop-section {
  background-color: rgb(255, 255, 255) !important;
  padding: 20px 0 !important;
  overflow: hidden !important;
  /* margin-bottom: 30px; */
}

.partnership-inline-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
  flex-wrap: nowrap;
  padding: 0 40px;
}



.logo-loop-container {
  overflow: hidden;
  white-space: nowrap;
  background: #fff;
  padding: 40px 0;
  /* flex: 1; */
}

.logo-track {
  display: flex;
  width: max-content;
}

.logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: infiniteScroll 30s linear infinite;
  will-change: transform;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  position: relative;
}

.logo-loop-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(212, 175, 55, 0.2);
}

.logo-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 100%;
  width: 1px;
  background-color: #ccc;
  opacity: 0.7;
}

.logo-item img {
  height: 30px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Logo loop mobile responsive styles */
@media (max-width: 768px) {
  .logo-loop-section {
    padding: 30px 0 !important;
  }

  .partnership-inline-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
    align-items: flex-start;
  }

  .logo-loop-container {
    padding: 15px 0 10px 0;
    max-width: 100%;
    border-radius: 10px;
  }

  .logo-track {
    gap: 10px;
  }

  .logo-item {
    padding: 0 15px;
  }

  .logo-item img {
    height: 30px;
  }

  .logo-item:not(:last-child)::after {
    width: 0.5px;
    top: 15%;
    height: 70%;
  }
}

/* Map Section */
.map-section {
  padding: 30px 100px !important;
  background: linear-gradient(to right, #f0f4f8, #e0e7ee);
  /*background: linear-gradient(to right, #e8fbe8, #d4f7d4);*/
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 100px !important;
}

.map-container {
  position: relative;
  width: 100% !important;
  height: 70vh !important;
}

.map-container iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  border-radius: 8px !important;
}

.contact-card {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 350px;
  background: white;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 10;
  color: #2C4236 !important;
  /* deep teal for text */
  border-left: 5px solid #3F5E4E !important;
}

.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #2C4236 !important;
  font-family: 'Marcellus', serif;
  font-weight: 600 !important;
}

.contact-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #333 !important;
  font-family: 'Segoe UI', sans-serif;
  margin-bottom: 0.8rem;
}

.contact-card p {
  margin: 0.6rem 0;
  font-size: 0.95rem;
  font-family: 'Segoe UI', sans-serif;
  color: #333 !important;
}

.contact-card i {
  margin-right: 8px;
  color: #3F5E4E !important;
}

.direction-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 18px;
  background: #3F5E4E !important;
  color: white !important;
  /* text-decoration: underline !important; */
  text-decoration: none !important;
  border-radius: 5px;
  text-align: center;
  transition: background 0.3s ease;
}

.direction-button i {
  color: white !important;
  margin-left: 10px !important;
  text-align: center;
  /* font-family: 'Segoe UI', sans-serif; */
}

.direction-button:hover {
  background: #2C4236 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .map-section {
    padding: 20px 10px !important;
    margin-bottom: 400px !important;
  }

  .map-container {
    height: 350px !important;
  }

  .contact-card {
    position: static;
    width: 100%;
    margin-top: 15px;
    padding: 1.2rem;
    border-left: 0;
    border-top: 5px solid #3F5E4E !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: none !important;
  }

  .contact-card h3 {
    font-size: 1.1rem;
  }

  .contact-card h4 {
    font-size: 1rem;
  }

  .contact-card p {
    font-size: 0.92rem;
  }

  .direction-button {
    width: 60%;
    padding: 10px 0;
    text-align: center !important;

  }
}

/* Round WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 18px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none !important;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
  color: white;
}


@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 18px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    padding: 12px;
  }
}

/* Split Section Styles */
.split-section {
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  height: 80vh;
  /* Default height for desktop */
  position: relative;
}

.split-section::before,
.split-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 8px;
  /* Increased line weight */
  background: linear-gradient(90deg, #8CA698 0%, #2C4236 100%);
  z-index: 10;
}

.split-section::before {
  top: 0;
}

.split-section::after {
  bottom: 0;
}

.split-half {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 100%;
  /* Full height of the section */
}

.split-image {
  width: 100%;
  height: 80vh !important;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.split-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
  z-index: 2;
  padding: 20px;
  box-sizing: border-box;
}

.split-subtitle {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}

.split-title {
  font-size: 2.0rem;
  font-weight: 400 !important;
  margin-bottom: 25px;
  line-height: 1.3;
  color: #fff !important;
}

.split-text {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
}

.split-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3F5E4E;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  border-radius: 8px;
  text-decoration: none !important;
}

.split-btn:hover {
  background-color: #2C4236;
  transform: translateY(-2px);
  color: #fff !important;
}

.split-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background-color 0.3s ease;
}

.split-half:hover .split-image {
  transform: scale(1.05);
}

.split-half:hover .split-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .split-title {
    font-size: 1.6rem;
  }

  .split-btn {
    padding: 10px 25px;
  }
}

@media (max-width: 768px) {
  .split-section {
    margin-top: 0px;
    margin-bottom: 0px;
    flex-direction: column;
    height: auto;
  }

  .split-half {
    height: 400px;
    /* Slightly reduced height for mobile */
    flex: none;
  }

  .split-content {
    top: 50%;
    width: 90%;
  }

  .split-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .split-subtitle {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .split-text {
    font-size: 0.7rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {

  .split-section {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .split-half {
    height: 350px;
  }

  .split-title {
    font-size: 1.3rem;
  }

  .split-subtitle {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .split-text {
    font-size: 0.7rem;
    margin-bottom: 15px;
  }

  .split-btn {
    padding: 8px 20px;
    font-size: 0.7rem;
  }
}

@media (max-width: 360px) {
  .split-section {
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .split-half {
    height: 300px;
  }

  .split-title {
    font-size: 1.2rem;
  }
}

/* yoga section */
.yoga-section {
  --accent: #ffffff;
  position: relative;
  width: 100%;
  height: 76vh;
  min-height: 520px;
  overflow: hidden;
  margin-top: 600px;
}


.yoga-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat var(--yoga-bg);
  z-index: 0;
}


.yoga-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 45vw);
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: clamp(16px, 6vw, 80px);
}


.yoga-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(100% + 26vw);
  background: linear-gradient(90deg,
      rgba(63, 94, 78, 0.96) 0%,
      /* dark green base */
      rgba(63, 94, 78, 0.94) 35%,
      /* smooth transition */
      rgba(44, 66, 54, 0.85) 55%,
      /* deeper green tone */
      rgba(31, 46, 39, 0.60) 75%,
      /* forest-green fade */
      rgba(20, 30, 25, 0.00) 98%
      /* fade to transparent */
    );
}

.yoga-content {
  position: relative;
  color: #fff;
  max-width: 520px;
  padding: clamp(20px, 4vw, 48px) 0;
  font-family: 'Montserrat', sans-serif !important;
}

.yoga-eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: .9;
  margin-bottom: 6px;
}

.yoga-title {
  font-family: 'Marcellus', serif !important;
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(36px, 6.8vw, 56px);
  margin: 6px 0 10px 0;
  color: #fff !important;
}

.yoga-desc {
  font-size: 14.5px;
  opacity: .95;
  margin: 2px 0 18px 0;
  max-width: 42ch;
}

.yoga-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2px;
  margin-bottom: 16px;
}

.yoga-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  text-decoration: none !important;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 3px;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}

.yoga-btn:hover {
  background: var(--accent);
  color: #2a2a2a;
  transform: translateY(-1px);
}

/* lines */
.yoga-section::before,
.yoga-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #8CA698 0%, #2C4236 100%);
  z-index: 2;
}

.yoga-section::before {
  top: 0;
}

.yoga-section::after {
  bottom: 0;
}

/* mobile */
@media (max-width: 992px) {
  .yoga-panel {
    width: min(520px, 58vw);
  }
}

@media (max-width: 768px) {
  .yoga-section {
    height: 60vh;
    min-height: 420px;
    margin-top: 0px;
  }

  .yoga-panel {
    width: 100%;
    padding-left: clamp(14px, 5vw, 40px);
  }

  .yoga-panel::before {
    width: 140%;
    background: linear-gradient(90deg,
        rgba(63, 94, 78, 0.75) 70%,
        /* dark green base */
        rgba(218, 230, 223, 0.00) 100%
        /* soft green fade to transparent */
      );

  }

  .yoga-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .yoga-desc {
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .yoga-section {
    height: 52vh;
    min-height: 380px;
  }

  .yoga-desc {
    max-width: 36ch;
  }
}

/* events section */
.events-section {
  /* margin-top: 600px; */
  --accent: #ffffff;
  position: relative;
  width: 100%;
  height: 76vh;
  min-height: 520px;
  overflow: hidden;
  margin-bottom: 60px;
}

.events-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat var(--events-bg);
  z-index: 0;
}

.events-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 45vw);
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: clamp(16px, 6vw, 80px);
}

/* right aligned */
.events-panel--right {
  margin-left: auto;
  padding-left: 0;
  padding-right: clamp(16px, 6vw, 80px);
  justify-content: flex-end;
  text-align: right;
}

.events-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(100% + 26vw);
  background: linear-gradient(90deg,
      rgba(63, 94, 78, 0.96) 0%,
      rgba(63, 94, 78, 0.94) 35%,
      rgba(44, 66, 54, 0.80) 55%,
      rgba(31, 46, 39, 0.50) 75%,
      rgba(20, 30, 25, 0.00) 98%);

}

.events-panel--right::before {
  left: auto;
  right: 0;
  background: linear-gradient(270deg,
      rgba(63, 94, 78, 0.96) 0%,
      rgba(63, 94, 78, 0.94) 35%,
      rgba(44, 66, 54, 0.80) 55%,
      rgba(31, 46, 39, 0.50) 75%,
      rgba(20, 30, 25, 0.00) 98%);

}

.events-content {
  position: relative;
  color: #fff;
  max-width: 520px;
  padding: clamp(20px, 4vw, 48px) 0;
  font-family: 'Montserrat', sans-serif !important;
}

.events-eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: .9;
  margin-bottom: 6px;
}

.events-title {
  font-family: 'Marcellus', serif !important;
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(36px, 6.8vw, 56px);
  margin: 6px 0 10px 0;
  color: #fff !important;
}

.events-desc {
  font-size: 14.5px;
  opacity: .95;
  margin: 2px 0 18px 0;
  max-width: 42ch;
  margin-left: auto;
}

.events-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2px;
  margin-bottom: 16px;
}

.events-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
  text-decoration: none !important;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  border-radius: 3px;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}

.events-btn:hover {
  background: var(--accent);
  color: #2a2a2a;
  transform: translateY(-1px);
}

/* lines */
.events-section::before,
.events-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #8CA698 0%, #2C4236 100%);
  z-index: 2;
}

.events-section::before {
  top: 0;
}

.events-section::after {
  bottom: 0;
}

/* mobile */
@media (max-width: 992px) {
  .events-panel {
    width: min(520px, 58vw);
  }
}

@media (max-width: 768px) {
  .events-section {
    height: 60vh;
    min-height: 420px;
  }

  .events-panel {
    width: 100%;
  }

  .events-panel--right::before {
    width: 140%;
    background: linear-gradient(270deg,
        rgba(44, 66, 54, 0.80) 70%,
        rgba(218, 230, 223, 0.00) 100%);

  }

  .events-panel--right {
    padding-right: clamp(14px, 5vw, 40px);
  }

  .events-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .events-desc {
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .events-section {
    height: 52vh;
    min-height: 380px;
  }

  .events-desc {
    max-width: 36ch;
  }
}

/* full width gift vouchers */
.split-full {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 80vh;
  /* same height as before */
}

.split-full .split-image {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.split-full:hover .split-image {
  transform: scale(1.05);
}

.split-full .split-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background-color 0.3s ease;
}

.split-full:hover .split-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.split-full .split-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 80%;
  z-index: 2;
  padding: 20px;
  box-sizing: border-box;
}