:root {
  --white-color: #fff;
  --black-color: #333;
  --gray-color: #575a5c;
  --primary-color: #1a3d56;
  --secondary-color: #6c757d;
  --background-color: #f8f9fa;
  --text-primary: #21354b;
  --text-secondary: #656565;
}

/* :root {
  --white-color: #fff;
  --black-color: #333;
  --gray-color: #575a5c;
  --primary-color: #132430;
  --secondary-color: #6c757d;
  --background-color: #f8f9fa;
  --text-primary: #212529;
  --text-secondary: #656565;
  --font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --bg-color: rgb(49, 79, 76);
  --color-1: rgb(19, 36, 48);
  --color-2: #f6f4ef;
  --color-3: #ede9ef;
  --color-4: #bc9e59;
  --color-5: #4a7fce;
  --color-6: rgba(188, 158, 89, 0.3);
  --cokir-7: #134430;
  --color-8: #f6f7f1;
  --color-9: rgb(49, 79, 76);
  --color-10: #002a3e;
  --color-11: #012940;
} */
/* =========================
   1. Normalize / Reset
========================= */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Nunito", serif;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}
.link {
  color: cornflowerblue;
}
/* Reset form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
  outline: none;
  background: transparent;
}

/* Button defaults */
button {
  cursor: pointer;
}
html {
  scroll-behavior: smooth;
}
/* Body defaults */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 600;
  padding: 0;
}

/* =========================
   2. Utility Classes
========================= */

/* Spacing */
.m-0 {
  margin: 0 !important;
}
.mt-1 {
  margin-top: 0.5rem !important;
}
.mb-1 {
  margin-bottom: 0.5rem !important;
}
.mt-2 {
  margin-top: 1rem !important;
}
.mb-2 {
  margin-bottom: 1rem !important;
}
.mt-3 {
  margin-top: 1.5rem !important;
}
.mb-3 {
  margin-bottom: 1.5rem !important;
}
.mx-auto {
  margin: 0 auto;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 0.5rem !important;
}
.p-2 {
  padding: 1rem !important;
}
.p-3 {
  padding: 1.5rem !important;
}

/* Flex utilities */
.flex {
  display: flex !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-between {
  justify-content: space-between !important;
}
.items-center {
  align-items: center !important;
}

/* Grid utilities */
.grid {
  display: grid !important;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}
.grid-cols-5 {
  grid-template-columns: repeat(5, 1fr) !important;
}
.gap-1 {
  gap: 0.5rem !important;
}
.gap-2 {
  gap: 1rem !important;
}
.gap-3 {
  gap: 1.5rem !important;
}
.gap-4 {
  gap: 2rem !important;
}
.gap-5 {
  gap: 2.5rem !important;
}
/* Text utilities */
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.bold {
  font-weight: 700 !important;
}
.italic {
  font-style: italic !important;
}
.uppercase {
  text-transform: uppercase !important;
}
.lowercase {
  text-transform: lowercase !important;
}
.fs-sm {
  font-size: 0.8rem;
}
.fs-base {
  font-size: 1rem;
}
.fs-md {
  font-size: 1.25rem;
}
.fs-lg {
  font-size: 1.5rem;
}
.fs-xl {
  font-size: 2rem;
}
.fs-2 {
  font-size: 2rem;
}
.fs-3 {
  font-size: 3rem;
}
.fs-4 {
  font-size: 4rem;
}
.fs-5 {
  font-size: 5rem;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.hero-content-title {
  font-size: 7rem;
  font-weight: 900;
}
.section-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
}
.primary-text {
  font-size: 1rem;
}
.secondary-text {
  font-size: 1.25rem;
}
/* =========================
  Color Utilities
========================= */
.text-white {
  color: var(--white-color) !important;
}
.text-color-black {
  color: var(--black-color);
}
.text-color-gray {
  color: var(--gray-color);
}
/* .text-color-muted {
}
.text-color-primary {
}
.text-color-secondary {
} */
.text-accent {
  color: var(--color-4);
}
.bg-primary {
  background-color: var(--primary-color);
}
/* Width helpers */
.w-full {
  width: 100% !important;
}
.max-w-screen {
  max-width: 1200px;
  margin: 0 auto;
}
.w-50 {
  width: 50%;
}

/* Hide/show */
.hidden {
  display: none !important;
}
.block {
  display: block !important;
}

/* =========================
   3. Helper Classes
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
/* =========================
   3. Helper Classes
========================= */
.text-color-primary {
  color: var(--text-primary);
}
.text-color-secondary {
  color: var(--text-secondary);
}
.ff-primary {
  font-family: "Libre Baskerville", serif;
}
.ff-secondary {
  font-family: "Nunito", serif;
}
/* Button styles */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-primary {
  background: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}
.btn-primary:hover {
  background: #fff;
  color: var(--primary-color);
}
.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: none;
}
/* create a glassmorphism effect */
.btn-glass {
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.main-btn-glass {
  position: absolute;
  top: 90%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 5;
}
/* Bounce Keyframes */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  40% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
  60% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}
/* =========================
  Standardization classes
========================= */
section {
  padding: 5rem 2rem;
}
.section-heading-container {
  width: 50%;
  margin: auto;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
/* =========================
   3. Hero Section classes
========================= */

main {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 100%;
}
.hero-overlay {
  display: none;
}
.hero-overlay.show {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* adjust opacity */
  z-index: 2;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%); /* Keep this for perfect centering */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 2;
  opacity: 0; /* start hidden */
  transition: opacity 1s ease; /* only animate opacity */
}
/* Show state */
.hero-content.show {
  opacity: 1;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100px;
  align-items: center;
  transition: all 0.3s ease;
  padding: 2rem 6rem;
  z-index: 10;
  opacity: 0;
  transition: opacity 1s ease;
}
header.show {
  opacity: 1;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  z-index: 100;
  position: relative; /* important so logo can be absolutely positioned */
}
.nav-left {
  display: flex;
  gap: 2rem;
}
.nav-right {
  display: flex;
  align-items: center;
}
/* Center logo */
.navbar-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100px;
  width: 100px;
  border-radius: 10px;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
nav ul li a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
/* When scrolled */
header.scrolled {
  background: var(--white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header.scrolled .navbar .nav-links {
  color: var(--primary-color);
}
header.scrolled .btn-primary {
  background: var(--primary-color);
  color: #fff;
}
/* Background video for hero section */
/* Hero frame */
.frame {
  padding: 0.5rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  border: 4rem solid #fff;
  box-sizing: border-box;
  transition: border 1.2s ease, transform 1.2s ease;
}

/* Shrunk frame */
.frame.shrink {
  border: 0.5rem solid #fff;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease, opacity 1.2s ease;
  transform: scale(0.8);
}

.hero-bg-video.expand {
  transform: scale(1);
  opacity: 1;
}

/* Video always stays at bottom */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Mobile menu hidden initially */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease-in-out;
}

.mobile-menu.active {
  right: 0;
  color: white;
  z-index: 100;
}

.mobile-menu .close-btn {
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 6;
}

.mobile-menu-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
  font-size: 1.5rem;
  animation: slideIn 1s forwards;
  color: #fff !important;
}
.mobile-menu-links li {
  animation: fadeIn 1s forwards;
  color: #fff;
}
.mobile-menu-navbar {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}
.mobile-menu-links li:nth-child(1) {
  animation-delay: 0.2s;
}
.mobile-menu-links li:nth-child(2) {
  animation-delay: 0.4s;
}
.mobile-menu-links li:nth-child(3) {
  animation-delay: 0.6s;
}
.mobile-menu-links li:nth-child(4) {
  animation-delay: 0.8s;
}
.mobile-menu-links li:nth-child(5) {
  animation-delay: 1s;
}
.mobile-menu-social-icons {
  justify-self: flex-end;
  margin-top: auto;
  align-self: flex-end;
  display: flex;
  flex-direction: row;
  font-size: 2rem;
  gap: 2rem;
  padding: 2rem;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/**=========================
  About Section
========================= */
.about-section-title {
  font-size: 5rem;
}
.about-container {
  width: 75%;
}
.about-text {
  text-align: center;
  line-height: 2rem;
}
.villa-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.villa-highlights-card {
  border: 1px solid #1e1e1e26;
  border-radius: 10px;
  padding: 1rem;
}
.villa-highlight-icon {
  border: 1px solid #ede9ef;
  padding: 1rem;
  height: 50px;
  width: 50px;
  font-size: 30px;
  border-radius: 50%;
  background-color: #1e1e1e08;
}
.slideshow-wrapper {
  position: relative; /* parent for positioning buttons */
  overflow: hidden; /* hide overflow scrollbars */
}

.slides {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
  overflow-x: auto;
  scroll-behavior: smooth;
}

/* Hide scrollbar (cross-browser) */
.slides::-webkit-scrollbar {
  display: none;
}
.slides {
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none; /* Firefox */
}
.slides img {
  width: auto;
  height: 450px;
  flex-shrink: 0;
  border-radius: 12px;
}
.menu-next-btn-left,
.menu-next-btn-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--primary-color);
  z-index: 5; /* stay above images */
}
.menu-next-btn-left {
  left: 0;
}

.menu-next-btn-right {
  right: 0;
}

.next-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}
/**=========================
   Amenities Section
========================= */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  /* background-color: rgb(49, 79, 76); */
  /* background-color: #002a3e; */
  /* background-color: #012940; */
}
.divider {
  height: 1px;
  background: #e6e6e687;
  margin: 2rem 0;
  width: 90%;
}
.ameneties-list {
  list-style: none;
  padding: 0;
  display: flex;
}
.amenities-group h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.amenities-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  color: var(--white);
}
.amenities-item svg {
  height: 1.5rem;
  width: 1.5rem;
  font-size: 2rem;
  fill: var(--white-color);
  color: var(--white-color);
}
/*===============
Gallary Section
=================*/
.gallary-images-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1rem;
}
.image-card {
  width: 100%;
  overflow: hidden;
  object-fit: cover;
  cursor: pointer;
}
.image-card img {
  height: auto;
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-card img:hover {
  transform: scale(1.1);
}
/* Reviews Section */
.reviews-carousel {
  margin: 0 auto;
  padding: 20px 0;
  max-width: 1200px;
  overflow: hidden;
  display: flex;
  > * {
    flex: 0 0 100%;
  }
  &:hover .reviews-group {
    animation-play-state: paused;
  }
}
.reviews-card {
  width: 100%;
  border-radius: 24px;
  border: 1px solid #e6e6e6;
  padding: 2rem 1rem;
  justify-content: center;
  align-items: center;
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.reviews-star {
  color: gold;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-self: center;
}
.reviews-content {
  font-style: italic;
}
.reviews-group {
  display: flex;
  gap: 20px;
  /* Add padding to the right to create a gap between the last and first card. */
  padding-right: 20px;
  will-change: transform; /* We should be nice to the browser - let it know what we're going to animate. */
  animation: scrolling 25s linear infinite;
}
.reviews-avatar {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #212529;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: var(--white-color);
  align-items: center;
  font-size: 1rem;
}
.reviews-user {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.review-userdetails h4 {
  font-size: 1.2rem;
}
.review-userdetails p {
  font-size: 0.8rem;
}
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* =========================
  FAQs
========================= */
.faqs {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary, #333);
  cursor: pointer;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f6f6f6;
}
.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg); /* change + to x */
}
.faq-answer {
  background-color: #f4f5f5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 2rem;
}
.faq-item.active .faq-answer {
  max-height: 300px; /* big enough for your text */
  padding: 1rem 2rem;
}

.villa-details-slider-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}
.villa-details-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: scroll;
  scroll-padding: 10px 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.villa-details-slider-card {
  min-width: 35%;
  scroll-snap-align: start;
  margin-right: 1rem;
  height: 100%;
}
.villa-details-image-holder {
  overflow: hidden;
  padding: 0;
  height: 300px;
  border-radius: 10px;
  padding-bottom: 0 !important;
}
.villa-details-image-holder img {
  width: 100%;
  object-fit: cover;
  scroll-snap-align: start;
  transition: transform 0.4s ease;
  height: 100%;
  margin: 0 !important;
  cursor: pointer;
  object-fit: cover;
}
.villa-details-slider::-webkit-scrollbar {
  display: none;
}
.villa-details-text {
  bottom: 10px;
  left: 10px;
  font-size: 1.25rem;
  color: var(--gray-color);
  font-weight: 600;
  margin-top: 1rem;
}

.availability-calendar-container {
  background: url("https://images.pexels.com/photos/11824926/pexels-photo-11824926.jpeg");
  height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 5rem;
}
.availability-calendar {
  height: 300px;
  width: 40%;
  background-color: #fff;
}
/**=====================
  Menu Section
=============**/
.menu-photos {
  width: 100%;
  overflow-x: auto;
}
.menu-photo {
  width: 300px;
}
/* ===================
Blogs section 
======================*/
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-card > img {
  width: 100%;
  border-radius: 8px;
  height: 250px;
}
.blog-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

/* ============
Styles for mobile
============== */
/* Hide hamburger on desktop */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/*============
Map Section
=============*/
.contact-section {
  display: flex;
  flex-direction: row;
}
.map-section {
  width: 50%;
  padding: 1rem;
  height: 450px;
}
.contact-info {
  width: 50%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-info-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.contact-info-item i {
  font-size: 1.5rem;
  padding: 0 2rem;
  color: var(--gray-color);
}
.contact-info-item a {
  font-size: 1.25rem;
  color: var(--gray-color);
}

/*=============
Instagram section
=============*/
/* Moving container */
.instagram-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.instagram-image-hover-container {
  position: relative;
  overflow: hidden;
  width: 250px;
  height: 250px;
  border-radius: 12px;
  margin: 0 10px;
  flex: 0 0 auto;
  cursor: pointer;
}

.instagram-image-hover-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.openable {
  cursor: pointer;
}
/* Hover Zoom */
.instagram-image-hover-container:hover img,
.zoomin:hover {
  transform: scale(1.2);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  color: #fff;
  font-size: 2rem;
}

.instagram-image-hover-container:hover .overlay {
  opacity: 1;
}

/* Infinite scroll */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Overlay with icon */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 4;
}

.overlay i {
  font-size: 2.5rem;
  color: #fff;
}

footer {
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-social-media-icons i {
  font-size: 24px;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-social-media-icons a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-social-media-icon {
  height: 50px;
  width: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
}
.footer-social-media-icon:hover {
  transform: translateY(-5px);
  transition: all 0.4s ease;
  background-color: #e6e6e6;
  color: var(--primary-color);
}
.builder {
  color: oklch(54.6% 0.245 262.881);
}
/* =========================
   RESPONSIVENESS
========================= */
/* Tablet screens (<= 1024px) */
@media (max-width: 1024px) {
  .hero-content-title {
    font-size: 5rem;
    font-weight: 900;
  }
  .section-title {
    font-size: 4rem;
  }
  .primary-text {
    font-size: 1rem;
  }
  .secondary-text {
    font-size: 1.25rem;
  }
  .divider {
    margin: 1rem 0;
  }
  .ameneties-list {
    margin-bottom: 2rem;
  }
  /* Navbar */
  .nav-left,
  .nav-right {
    display: none !important;
  }
  .frame.shrink {
    padding: 0 !important;
  }
  main {
    border-radius: 0;
  }
  .navbar-logo {
    position: relative;
    left: 0;
    transform: none;
    max-height: 100px;
    max-width: 100px;
  }
  .hamburger {
    display: block;
    color: white;
  }
  .hero-content {
    width: 70%;
  }
  header {
    background-color: var(--white-color);
    padding: auto 2rem;
  }
  .hero-content-title {
    font-size: 3rem;
  }
  .about-section-title {
    font-size: 3rem;
  }
  .about-container {
    width: 100%;
  }
  .villa-highlights {
    grid-template-columns: repeat(1, 1fr);
  }
  .section-title {
    font-size: 2.5rem;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .villa-highlights-card {
    flex-direction: column;
  }
  .villa-details-slider-card {
    min-width: 50%;
  }
  /* Gallery */
  .gallary-images-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .image-card img {
    height: auto;
    width: 100%;
    border-radius: 8px;
    transition: transform 0.4s ease;
  }
  .image-stack img {
    width: 250px;
    height: 350px;
  }
}

/* Mobile screens (<= 768px) */
@media (max-width: 768px) {
  .fs-5 {
    font-size: 3rem;
  }
  .section-heading-container {
    width: 100%;
    padding: 0;
  }
  /* Navbar */
  .nav-left,
  .nav-right {
    display: none !important;
  }
  .navbar-logo {
    position: relative;
    left: 0;
    transform: none;
    max-height: 80px;
    max-width: 80px;
  }
  .frame.shrink {
    padding: 0 !important;
    border: none;
  }
  .hamburger {
    display: block;
    color: white;
  }
  header {
    background-color: var(--white-color);
    padding: 2rem;
  }
  /* Hero */
  .hero-content {
    width: 90%;
  }

  /* About section */
  .about-heading {
    font-size: 2rem;
  }
  .about-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .amenities-list {
    margin-bottom: 3rem;
  }
  /* Villa highlights */
  .villa-highlights-card {
    flex-direction: column;
    gap: 1rem;
  }
  .villa-highlights-card h3 {
    font-size: 2rem;
  }
  .grid-cols-3 {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  /* Villa slider */
  .villa-details-slider-card {
    min-width: 80%;
  }

  /* Amenities */
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .image-card {
    width: 100%;
  }

  /* FAQ */
  .faq-question {
    font-size: 1rem;
    padding: 1rem;
  }
  .faq-answer {
    padding: 0rem 1rem;
  }
  .faq-item.active .faq-answer {
    max-height: 300px; /* big enough for your text */
    padding: 1rem 1rem;
  }
  /* Calendar */
  .availability-calendar-container {
    flex-direction: column;
    height: 400px;
  }
  .availability-calendar {
    width: 100%;
    height: auto;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  /* General */
  .section-title {
    font-size: 2rem;
  }
  .slides {
    gap: 0;
  }
  .slides img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    border-radius: 12px;
  }
  .w-50 {
    width: 100%;
  }
  .contact-section {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 2rem;
  }
  .contact-info,
  .map-section {
    width: 100%;
    gap: 1rem;
    padding: 0;
  }
  .contact-info {
    gap: 1rem;
  }
  .contact-info i {
    padding: 0.5rem;
    font-size: 1rem;
  }
  .contact-info-item a {
    font-size: 1rem;
  }
}
/* =========================
   Image Modal Utility
========================= */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.image-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.image-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}
.header-gallary {
  background-color: var(--white-color) !important;
  color: var(--primary-color) !important;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 50px;
  right: 50px;
  color: #fff;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.whatsapp-float i {
  font-size: 24px;
}

.image-grid-row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  margin: 0 auto;
}

/* Create four equal columns that sits next to each other */
.image-grid-column {
  -ms-flex: 33.33%; /* IE10 */
  flex: 33.33%;
  max-width: 33.33%;
  padding: 0 4px;
}

.image-grid-column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  border-radius: 16px;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .image-grid-column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .image-grid-column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}
