:root {
  --primary-color: #4ca901;
  --text-color: #0c3b6b;
  --para-color: #92a1b7;
}

body {
  font-family: "Sora", sans-serif;
}
/* ---------------------------------------
TOPBAR
---------------------------------------- */
.topbar-section {
  background: #0c3b6b;
  padding: 10px 0;
  color: #fff;
}
.topbar-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-text,
.topbar-contact {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.custom-logo img {
  height: 120px;
  width: 100%;
}

.custom-navbar {
  padding: 10px 0;
  background-color: #ffffff;
}

.custom-nav .nav-link {
  color: var(--text-color);
  font-size: 20px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  font-weight: 400;
}

.custom-nav .nav-link:hover {
  text-decoration: underline;
}

.custom-nav .dropdown-menu {
  border-radius: 8px;
}

.custom-navbar-btn .custom-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
}

.custom-navbar-btn .custom-btn:hover {
  background-color: var(--text-color);
  color: #fff;
}

@media (max-width: 991px) {
  .custom-navbar-btn {
    margin-top: 10px;
  }

  .navbar .container {
    flex-wrap: wrap;
  }
  .topbar-container {
    flex-wrap: wrap;
    gap: 8px;
    /* text-align: center; */
  }
}

/* ================================
   HERO BANNER SECTION
=================================== */
.hero-banner-section {
  width: 100%;
  height: 100vh;
  max-height: 900px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ================================
   SLIDER
=================================== */
.hero-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

.slide-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: kenBurnsZoom 12s ease-in-out forwards;
}

.swiper-slide-active .slide-img {
  opacity: 1;
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

/* ================================
   HERO CONTENT
=================================== */
.hero-content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 20px;
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.7) 2px 2px 4px;
  z-index: 5;
}

.hero-title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title span {
  color: #ffc107;
  /* color: #680079; */

}

.hero-subtitle {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* ================================
   CONTENT ANIMATION
=================================== */
.hero-fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: all 1s ease;
}

.hero-delay-1 {
  transition-delay: 0.3s;
}
.hero-delay-2 {
  transition-delay: 0.6s;
}
.hero-delay-3 {
  transition-delay: 0.9s;
}

.hero-animate-active .hero-fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   FORM
=================================== */
.hero-form {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 80px;
}

.hero-input,
.hero-select {
  width: 220px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.hero-btn {
  background: #ff6f00;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #c62828;
}

/* -------- 1200px (Large Laptops) -------- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 44px;
  }
}

/* -------- 992px (Tablets Landscape) -------- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-content {
    max-width: 750px;
  }
  .hero-form {
    margin-top: 60px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero-banner-section {
    height: auto;
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-form {
    margin-top: 40px;
    padding: 25px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 14px;
  }

  .hero-input,
  .hero-select,
  .hero-btn {
    width: 100%;
  }

  .hero-form {
    padding: 20px;
  }
}

/* ================================
   ABOUT SECTION
================================== */
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-wrapper {
  max-width: 1300px;
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.about-label {
  font-size: 16px;
  color: #7a7a7a;
  margin-bottom: 10px;
}

.about-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
}

.about-img-left img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* RIGHT */
.about-img-right img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 30px;
}

.about-text {
  font-size: 20px;
  color: var(--para-color);
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 25px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 26px;
  border-radius: 30px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #fff;
  color: var(--primary-color);
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-heading {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 60px 0;
  }

  .about-heading {
    font-size: 30px;
  }

  .about-text {
    font-size: 16px;
  }

  .about-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}

/* ================================
   VILLA SECTION
================================== */
.villa-section {
  padding: 80px 0;
  background: #f4f7fb;
}

.villa-container {
  width: 80%;
  margin: auto;
  text-align: center;
}

.villa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.villa-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: 0.3s ease;
}

.villa-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.1);
}

.villa-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.villa-content {
  padding: 22px;
  text-align: left;
}

.villa-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.villa-info {
  color: #6b7280;
  margin-bottom: 14px;
  font-size: 16px;
}

.villa-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.villa-tags span {
  font-size: 16px;
  background: #faf8ee;
  padding: 8px 15px;
  border-radius: 6px;
}

.villa-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.villa-price h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1c2c40;
}

.villa-btn {
  background: #4ca901;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.villa-btn:hover {
  background: transparent;
  color: #4ca901;
}

/* Responsive */
@media (max-width: 768px) {
  .villa-grid {
    grid-template-columns: 1fr;
  }

  .villa-image img {
    height: 200px;
  }

  .villa-name {
    font-size: 18px;
  }

  .villa-info {
    font-size: 14px;
  }

  .villa-tags span {
    font-size: 14px;
  }
}
/* Tabs Wrapper */
.villa-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 25px 0;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}
.villa-tabs::-webkit-scrollbar {
    display: none;
}

/* Tab Button */
.tab-btn {
    padding: 10px 20px;
    white-space: nowrap;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f4f4f4;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    color: #4ca901;
}
.tab-btn.active {
    background: #4ca901;
    color: #fff;
    border-color: #4ca901;
}

/* Tab Content */
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.stay-heading {
    text-align: center;
    font-size: 28px;
    margin-top: 15px;
    font-weight: 700;
}

/* ================================
   FACILITIES SECTION
================================== */
.facilities-section {
  padding: 80px 0;
  background: #fff;
}

.facilities-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.facilities-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.facility-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
}

.facility-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
}

.facility-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.facility-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .facility-card {
    padding: 22px;
  }

  .facility-name {
    font-size: 18px;
  }
}

/* ================================
   TESTIMONIALS
================================== */
.testi-section {
  background: #dae4f3;
  color: #fff;
  padding: 80px 0;
  border-radius: 0 0 40px 40px;
}

.testi-btn {
  background: #fff;
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.testi-btn:hover {
  background: #e8f3ff;
}

.testi-card {
  background: #fff;
  color: #333;
  border-radius: 14px;
  padding: 30px;
  position: relative;
  min-height: 260px;
}

.stars i {
  color: #3c94e8;
  font-size: 16px;
}

.testi-text {
  font-size: 16px;
  margin: 15px 0;
}

.testi-user {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testi-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 12px;
}

.testi-user h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.testi-user p {
  margin: 0;
  font-size: 13px;
  opacity: 0.7;
}

.quote-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 22px;
  color: #3c94e8;
}

@media (max-width: 768px) {
  .testi-card {
    margin-bottom: 20px;
  }

  .testi-text {
    font-size: 14px;
  }
}

/* ================================
   GALLERY SECTION
================================== */
.gallery-section {
  padding: 70px 0;
}

.gallery-left {
  padding-right: 30px;
}

.gallery-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.gallery-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.gallery-video {
    width: 100%;
    max-height: 300px;
    border-radius: 12px;
    object-fit: cover;  
    background-color: #000;
}

.video-wrapper {
    margin-bottom: 15px;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-img-big {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-img:hover,
.gallery-img-big:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-left {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .gallery-img {
    height: 220px;
  }

    .gallery-video {
        max-height: 220px; 
    }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-img,
  .gallery-img-big {
    height: 200px;
  }
}

/* ================================
   RESERVE SECTION
================================== */
.reserve-section {
  padding: 80px 0;
}

.reserve-content {
  padding-right: 30px;
}

.reserve-subtitle {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.reserve-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
}

.reserve-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.reserve-btn {
  background: #fff;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
}

.reserve-btn:hover {
  background: #000;
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .reserve-title {
    font-size: 28px;
  }

  .reserve-text {
    font-size: 15px;
  }
}

/* ================================
   FOOTER SECTION
================================== */
.footer-section {
  background: #0c3b6b;
  padding: 60px 0;
  color: #fff;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-left: 30px;
}

.footer-links li {
  list-style: none;
  margin: 8px 0;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #0c3b6b;
  font-size: 16px;
  transition: 0.3s;
}

.footer-bottom {
  border-top: 1px dotted #fff;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 16px;
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
  }

  .footer-bottom {
    text-align: center;
    gap: 10px;
  }
}
/* CONTENT ABOVE OVERLAY */
.menu-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* HEADER */
.menu-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.menu-content p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* MENU CONTAINER */
.menu-container {
  max-width: 1000px;
    margin: 20px auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.menu-item {
    width: calc(33.333% - 20px);
    text-align: center;
    margin-bottom: 40px;
}

.menu-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%; 
    margin-bottom: 10px;
    border: 3px solid #fff; 
    transition: transform 0.3s;
}

.menu-item img:hover {
    transform: scale(1.1);
}

.menu-item h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .menu-item {
        width: calc(50% - 20px); 
    }
}

@media (max-width: 600px) {
    /* .menu-item {
        width: 100%;
    } */
     .menu-item img {
    width: 90px;
    height: 90px;
   }
   .menu-item h3 {
    font-size: 0.9rem;
}
.menu-content h2 {
    font-size: 30px;
   
}
.menu-content p {
    font-size: 0.9rem;
}
.villa-price h4 {
    font-size: 16px;
}
.villa-price small {
    font-size: 12px;
}
.villa-btn {
    padding: 8px 10px;
    font-size: 12px;
 
}
.villa-tabs{
  flex-wrap: wrap;
}
}