@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


:root {
  --nav-color: #222222;
  --nav-button-background: rgb(187, 225, 250);
  --footer: #1B262C;
  --card-bg: rgb(230, 210, 214);
  --accent-color: #FF7F50;
  /* Coral for highlights */
  --text-light: #ffffff;
  /* White text for contrast */
  --card-color: #FFF8F0; 
  --badge-color: #e4a72e96;
}


* {
  box-sizing: border-box;
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
}

::-webkit-scrollbar {
  height: .5rem;
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background-color: #313544;
}

html {
  scroll-behavior: smooth;
  line-height: 1.5;
}

body {
  min-height: 100vh;
  background-color: rgba(222, 225, 228, 0.49);
}

@media(max-width: 768px) {
  iframe {
    width: 95%;
  }
}

/*
  Remove the default font size and weight for headings.
  */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul {
  list-style: none;
}

/*
  Reset links to optimize for opt-in styling instead of opt-out.
  */

a {
  color: inherit;
  text-decoration: inherit;
}

/* Titles/Headings */


/* HEADINGS */
/* Header */
.header {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  /* border-bottom: 1px solid #000; */
  /* width: 50%; */
  /* margin: 0 auto; */
}

.header::after {
  content: '';
  position: absolute;
  background-color: var(--nav-color);
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  /* transform: translateY(-50%); */
}

.heading {
  font-size: 2.5rem;
  font-weight: bold;
}

@media(max-width:768px) {
  .heading {
    font-size: 2.2rem;
  }

  .contact-section .container .header {
    border-bottom: 1px solid white;
  }
}

/* HEADINGS */

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--nav-color);
  width: 35px;
  height: 35px;
  border-radius: 4px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
}

.back-to-top i {
  font-size: 15px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background-color: var(--accent-color);
  /* color: black; */
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Navbar */


.navbar {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 35px;
  background-color: var(--nav-color);
  z-index: 999;
  width: 100%;
  top: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.hamburger {
  display: none;
}

.bar {

  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* background-color: #101010; */
  background-color: #fff;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-item {
  margin-right: 50px;
}

.nav-link {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  /* color: #475569; */
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  transition: all 0.2s ease;
  /* background-color: ; */
  font-size: 17px;

}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #e2d694;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* .nav-link[aria-current="true"]::after, */
.nav-link[aria-current="true"] {
  color: #e2d694;
  width: 100%;
}



@media only screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 5rem;
    flex-direction: column;
    /* background-color: #fff; */
    background-color: #222;
    width: 100%;
    z-index: 999;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-link {
    font-size: 20px;
  }

  .nav-link {
    color: #fff;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 30px 0;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

}

/* Navbar */

/* Logo styles */
.nav-logo {
  text-align: center;
}

.logo-title {
  font-size: 30px;
  /* Matches Tailwind's text-3xl */
  font-weight: bold;
  color: #e2d694;
  /* Gold color */
}

.logo-subtitle {
  font-size: 1.125rem;
  /* Matches Tailwind's text-lg */
  color: #d1d5db;
  /* Light gray */
}



/* Navbar */
/* Contact  */
/* Section Styling */
.contact-section {
  padding: 50px 20px;

  color: black;
  /* White text for contrast */
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}



/* Content Wrapper */
/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}



/* Content Wrapper */
.contact-section {
  padding: 50px 20px;

}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Left Column: Info Section */
.info {
  flex: 1;
  max-width: 500px;
}

.info p {
  font-size: 1.1rem;
}

.info ul {
  list-style: none;
  padding: 0;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 50px;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #2563eb;
  border-radius: 50%;
  margin-right: 15px;
}

.icon svg {
  /* fill: none; */
  stroke: #ffffff;
  width: 24px;
  height: 24px;
}

/* Right Column: Form Section */
.form-container {
  flex: 1;
  max-width: 500px;
  background-color: #ffffff;
  color: #333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.form-container h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.csubmit {
  width: 100%;
  padding: 10px;
  background-color: #2563eb;
  color: #ffffff;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.csubmit:hover {
  background-color: #1d4ed8;
}

@media(max-width: 768px) {
  .contact-section {
    background-color: #1e293b;
    color: #ffffff;
    /* White text for contrast */
  }
}

/* Contact  */
/* MESSAGE */
#toastBox {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  z-index: 1502;
}

.toast {
  z-index: 1502;
  max-width: 400px;
  width: 100%;
  height: auto;
  background: #fff;
  font-weight: 500;
  margin: 15px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 15px;
  overflow: hidden;
  /* word-wrap: break-word; */
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.hide {
  opacity: 0;
  transform: translateY(20px);
}

.toast span {
  cursor: pointer;
  margin: 0 20px;
  font-size: 22px;
  padding: 0 10px 2px 10px;
  background-color: green;
  border-radius: 30px;
  transition: 0.2s ease-in;
}

.toast span:hover {
  color: #fff;
  padding: 0 12px 2px 12px;
  transition: 0.2s ease-in;
}

.toast::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: green;
  animation: anim 5s linear forwards;
}

@media (max-width: 460px) {
  #toastBox {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .toast {

    /* max-width: 90%; */
    font-size: 16px;
    /* text-align: center; Centers text for mobile */
    /* display: block; Changes to block for better wrapping */
  }
}

@keyframes anim {
  100% {
    width: 0;
  }
}

/* MESSAGE */


/* Hero */
.hero-slider-container {

  margin-top: 80px;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.hero-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  /* Place the image behind the content */
}

.hero-slider-wrapper .hero-slider-item {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-slider-wrapper .hero-slider-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* filter: grayscale(30%); */

  background-size: cover;
  background-position: center;
}

.hero-slider-wrapper .hero-slider-item:nth-child(1)::before {
  background-image: url("../imgs/resort_1.jpg ");
}

.hero-slider-wrapper .hero-slider-item:nth-child(2)::before {
  background-image: url("../imgs/about2.jpeg");
}

.hero-slider-wrapper .hero-slider-item:nth-child(3)::before {
  background-image: url("../imgs/hero_3.jpg");
}

.hero-slider-wrapper .hero-slider-item .hero-slide-content {
  color: #fff;
  z-index: 20;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px 10px;
  position: relative;
  /* outline: #000; */
}

.hero-slider-wrapper .hero-slider-item .hero-slide-content>* {
  max-width: 35%;
}

.hero-slider-item .hero-slide-content .hero-slide-subtitle {
  font-size: 1rem;
  font-weight: normal;
}

.hero-slider-item .hero-slide-content .hero-slide-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 5px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px black;
}

.hero-slider-item .hero-slide-content .hero-slide-description {
  margin-top: 25px;
  line-height: 25px;
}

.hero-slider-item .hero-slide-content .hero-slide-button {
  background: #fff;
  display: block;
  margin-top: 45px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fff;
  width: 250px;
  padding: 13px 0;
  letter-spacing: 1px;
  text-align: center;
  transition: 0.5s ease;
  color: #000;
  border: 1px solid black;

}

.hero-slider-item .hero-slide-content .hero-slide-button:hover {
  text-shadow: 1px 1px 4px black;
}

@media(max-width:640px) {
  .hero-slider-wrapper .hero-slider-item .hero-slide-content>* {
    max-width: 100%;
  }

}

/* Hero */

/* About */
.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;

}

.about-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

/* About Items - Row 1 */
.about-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: var(--card-bg);
  /* Muted pink card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: var(--nav-color);
  /* Dark text */
}

/* About Items - Row 2 Styling */
.about-items:nth-child(2) {
  /* background: linear-gradient(200deg, #1b262cce, var(--accent-color));  */
  background: var(--accent-color);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  /* Stronger shadow */
  padding: 2rem;
  /* border-left: 5px solid var(--nav-color);  */
  border-radius: 8px;
  font-weight: 500;
  color: black;
  /* White text for readability */
}

/* About Info */
.about-info {
  flex: 1;
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
}

.about-info h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--nav-color);
  margin-bottom: 1rem;
}

/* Camp List */

.camp-list {
  margin: 1rem 0;
  padding: 0;
  list-style-type: disc;
  list-style-position: inside;
  font-size: 1rem;
  line-height: 1.8;
  color: inherit;
  /* Matches parent color */
}

.camp-list li {
  cursor: pointer;
  margin: 0.5rem 0;
  transition: all 0.2s ease-in-out;
  list-style: none;
}

.camp-list li i {
  padding: 8px;
  font-size: 10px;
  margin-right: 10px;
  background-color: var(--text-light);
  border-radius: 50%;

}

.camp-list li:hover {
  font-size: 18px;

  transition: all 0.2s ease-in-out;

}

/* Content Popup */
.content-popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Backdrop color */
  justify-content: center;
  align-items: center;
  z-index: 1000;

}

.content-popup-inner {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  width: 80%;
  max-width: 800px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  /* height: 50%;
  overflow-y: auto; */
}

.content-popup a {
  border: 1px solid black;
  padding: 5px;
  border-radius: 5px;
  font-weight: bold;

}

.content-popup h2 {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 20px;
}

.content-popup span,
.content-popup h3 {
  font-weight: bold;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  color: white;
  cursor: pointer;
  padding: 5px 7px 5px 7px;
  border-radius: 50%;
  background-color: var(--nav-color);
}

.popup-close:hover {
  color: var(--accent-color);
}

/* Content for each section */
#popup-content {
  margin-top: 1rem;
}

/* Backdrop blur */
.content-popup.open {
  display: flex;
}



/* About Image Section */
.about-img-section {
  flex: 1;
  text-align: center;
}

.about-img {
  width: 100%;
  max-width: 450px;
  min-width: 300px;
  min-height: 280px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--nav-color);
  /* Highlight images with coral border */
  margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-items {
    flex-direction: column;
  }

  .about-img {
    max-width: 400px;
  }

  .about-img:nth-child(1),
  .about-img:nth-child(2) {
    display: none;
  }

  .about-info {
    text-align: center;
  }

  .camp-list {
    text-align: left;
  }
}

/* About */

/* Contact */
#cform {
  border: 1px solid black;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 0px 10px 0px black;
}

/* Contact */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 50px auto;
  max-width: 1200px;
}

/* Resort Details Styles */
.resort-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.resort-details-container section {
  margin-bottom: 40px;
}

.resort-overview h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
}

.resort-description {
  font-size: 1.1em;
  color: #666;
  line-height: 1.6;
}

.resort-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.highlight-item {
  background-color: #f0f0f0;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  color: #333;
}

.highlight-item i {
  margin-right: 5px;
  color: #007bff;
}

.amenities-list,
.activities-list,
.policy-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.amenities-list li,
.activities-list li {
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 5px;
}

.amenities-list i,
.activities-list i {
  margin-right: 10px;
  color: #28a745;
}

.room-grid,
.dining-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.room-card,
.dining-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.room-card:hover,
.dining-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-card h4,
.dining-card h4 {
  padding: 15px;
  margin: 0;
  background-color: #f0f0f0;
}

.room-card p,
.dining-card p {
  padding: 15px;
  margin: 0;
}

.policy-list li {
  margin-bottom: 10px;
}

.contact-booking {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.book-now-btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.book-now-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {

  .resort-highlights,
  .amenities-list,
  .activities-list,
  .room-grid,
  .dining-options {
    grid-template-columns: 1fr;
  }
}

/* Resort Details Styles */
.resort-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.resort-details-container section {
  margin-bottom: 40px;
}

.resort-overview h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
}

.resort-description {
  font-size: 1.1em;
  color: #666;
  line-height: 1.6;
}

.resort-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.highlight-item {
  background-color: #f0f0f0;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  color: #333;
}

.highlight-item i {
  margin-right: 5px;
  color: #007bff;
}

.amenities-list,
.activities-list,
.policy-list {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.amenities-list li,
.activities-list li {
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 5px;
}

.amenities-list i,
.activities-list i {
  margin-right: 10px;
  color: #28a745;
}

.room-grid,
.dining-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.room-card,
.dining-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.room-card:hover,
.dining-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-card h4,
.dining-card h4 {
  padding: 15px;
  margin: 0;
  background-color: #f0f0f0;
}

.room-card p,
.dining-card p {
  padding: 15px;
  margin: 0;
}

.policy-list li {
  margin-bottom: 10px;
}

.contact-booking {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.book-now-btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 15px;
  transition: background-color 0.3s ease;
}

.book-now-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {

  .resort-highlights,
  .amenities-list,
  .activities-list,
  .room-grid,
  .dining-options {
    grid-template-columns: 1fr;
  }
}

.contact-details {
  flex: 1 1 300px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.map-container {
  flex: 1 1 500px;
  min-height: 400px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-details h2 {
  color: #333;
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #E6B89C ;
  padding-bottom: 10px;
}

.contact-details h3 {
  color: #555;
  font-size: 1.4rem;
  margin-top: 20px;
  margin-bottom: 15px;
}

.contact-details p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.contact-details strong {
  color: #333;
}

.contact-details a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #0056b3;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 20px;
  }

  .contact-details,
  .map-container {
    flex-basis: 100%;
  }

  .map-container {
    min-height: 300px;
  }
}



.contact-details strong {
  color: #333;
}

.contact-details a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #0056b3;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 20px;
  }

  .contact-details,
  .map-container {
    flex-basis: 100%;
  }

  .map-container {
    min-height: 300px;
  }
}


/* Resort */
.resort-card-wrapper {
  max-width: 1200px;
  margin: 25px auto;
  overflow: hidden;
  padding: 20px 10px;
}

.resort-card-list .resort-card-item {
  list-style: none;
}

.resort-card-list .resort-card-item .resort-card-link {
  user-select: none;
  display: block;
  padding: 18px;
  background-color: pink;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  transition: 0.2s ease;
  min-height: 480px;
}

.resort-card-list .resort-card-item .resort-card-link:active {
  cursor: grabbing;
}

.resort-card-list .resort-card-item .resort-card-link:hover {
  transition: 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  border-color: #5372F0;
}

.resort-card-list .resort-card-link .resort-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}

.resort-card-list .resort-card-link .resort-badge {
  color: black;
  margin: 16px 0 18px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  width: fit-content;
  border-radius: 50px;
  background-color: var(--badge-color);
}

.resort-card-list .resort-card-link .resort-card-title {
  font-size: 1rem;
  color: #000;
  font-weight: 600;
}

.resort-card-list .resort-card-link .resort-card-button {
  height: 35px;
  /* width: fit-content; */
  width: 35px;
  padding: 0 5px;
  border-radius: 50%;
  margin: 30px 0 5px;
  color: #5372F0;
  background-color: whitesmoke;
  cursor: pointer;
  border: 2px solid var(--badge-color);
  transition: 0.4s ease;
}

.resort-card-list .resort-card-link .resort-card-button svg {
  width: 20px;
  fill: var(--badge-color);
}

.resort-card-list .resort-card-link:hover .resort-card-button {
  transition: 0.4s ease;
  /* color: #fff; */
  background: var(--badge-color);
  transform: rotate(-45deg);
}

.resort-card-list .resort-card-item .resort-card-link:hover .resort-card-button svg {
  fill: white;
}

.resort-card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background-color: #5372F0;
}

.resort-card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.resort-card-wrapper .swiper-slide-button {
  color: #5372F0;
  margin-top: -35px;
}

.loadMore {
  position: relative;
  display: block;
  max-width: 200px;
  margin: 25px auto;
  font-weight: 600;
  /* background-color: red; */
  padding: 10px;
  border: 2px solid black;
  border-radius: 5px;
  text-align: center;
  color: var(--nav-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

.loadMore:hover {
  color: white;
}

.loadMore::after {
  content: '';
  height: 45px;
  background: var(--nav-color);
  left: 0;
  bottom: 0;
  width: 0px;
  z-index: -5;
  transition: all 0.2s ease;
  position: absolute;
}

.loadMore:hover::after {
  width: 100%;
  transition: all 0.2s ease;

}

@media(max-width: 768px) {

  .resort-card-wrapper {
    margin: 0 10px 25px;
  }

  .resort-card-wrapper .swiper-slide-button {
    display: none;
  }

}

/* Resort */

/* Display Resort */
.display-resort-container {
  margin: 120px auto;
  width: 85%;
}

.display-resort-card-list {
  display: flex;
  flex-wrap: wrap;
  /* Allows items to wrap to the next line */
  gap: 20px;
  justify-content: center;
  /* margin: 0 auto; */
}

.display-resort-card-item {
  flex: 0 1 calc(45% - 20px);
  /* Takes 50% of the width minus the gap */
  list-style: none;
}

.display-resort-card-link {
  /* min-width: 350px; */
  min-height: 550px;
  user-select: none;
  display: block;
  padding: 18px;
  background-color: var(--card-bg);
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  transition: 0.2s ease;
}

.display-resort-card-link:hover {
  transition: 0.2s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  /* border-color: #E4A72E; */
}

.display-resort-card-img {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}

.display-resort-card-list .display-resort-card-link .display-resort-badge {
  color: black ;
  margin: 16px 0 18px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  width: fit-content;
  border-radius: 50px;
  background-color: var(--badge-color) ;

}

.display-resort-card-list .display-resort-card-link .display-resort-title {
  font-size: 1rem;
  color: #4A2D4A ;
  /* font-weight: 600; */
}

.display-resort-title span {
  color: #333333 ;
  font-weight: bold;
}

.display-resort-card-list .display-resort-card-link .display-resort-card-button {
  height: 35px;
  /* width: fit-content; */
  width: 35px;
  padding: 3px 5px;
  border-radius: 50%;
  margin: 30px 0 5px;
  color: var(--badge-color);
  background-color: whitesmoke;
  cursor: pointer;
  border: 2px solid var(--badge-color);
  transition: 0.4s ease;
}

.display-resort-card-list .display-resort-card-link .display-resort-card-button svg {
  fill: var(--badge-color) ;
  width: 20px;
}

.display-resort-card-list .display-resort-card-link:hover .display-resort-card-button {
  transform: rotate(-45deg);
  transition: 0.4s ease;
  color: #fff;
  background: #E4A72E;
 
}

.display-resort-card-list .display-resort-card-link:hover .display-resort-card-button svg {
  fill: #fff;
}

@media(max-width: 768px) {
  .display-resort-card-item {
    flex: 0 1 100%;
    /* Stacks items in a single column on smaller screens */
  }
  .display-resort-card-link{
    min-height: 450px;
  }
}

/* Display Resort */

/* Footer */

#footerHighlight {
  position: relative;
  background: var(--footer);
  color: white;
  text-align: center;
  padding: 10px 20px;
  border-top: 1px solid white;
  /* width: 80%; */
}

.footer {
  background-color: var(--footer);
  padding: 2rem 1rem;
  color: #BBE1FA;

  bottom: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 50%;
  padding: 1rem;
  min-width: 200px;
}

.footer-title {
  font-size: 1.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-subtitle {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-icons {
  display: flex;
  gap: 0.5rem;
}

.footer-icon-button {
  background-color: white;
  color: #FF4081;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.footer-icon-button:hover {
  background-color: #FF4081;
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
}

.footer-links-group {
  flex: 1 1 50%;
  padding: 0.5rem;
}

.footer-links-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-list li {
  margin-bottom: 0.5rem;
}

.links-list a,
.links-list button {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.1s ease;
}

.links-list li button {
  padding: 3px;
  margin: none;
  background-color: transparent;
}

.links-list a:hover,
.links-list button:hover {
  background-color: var(--nav-button-background);
  transition: all 0.2s ease;
  color: var(--footer);

  cursor: pointer;
}

.ftext li a {
  /* transition: 0.5s ease-in; */
}

.ftext li a:hover {
  text-align: center;
  transition: 0.2s ease-in-out;

  /* background: transparent; */
  color: black;
  width: 50%;
  /* padding: 0 0 2px 0; */
  border-radius: 5px;
}

/* Footer */

/* Resort Details */
/* General Swiper container styling */
.display-hero-container {
  width: 100%;
  /* Full viewport width */
  height: 100vh;
  /* Full viewport height */
  position: relative;
  overflow: hidden;
}

/* Swiper wrapper to ensure smooth slide transitions */
.swiper-wrapper {
  display: flex;
}

/* Individual swiper slide styling */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Image container for each slide */
.img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Image styling to fill the screen */
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Use 'contain' if you want to preserve aspect ratio */
}

/* Pagination dots styling */
.swiper-pagination {
  bottom: 20px;
  text-align: center;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.swiper-pagination-bullet-active {
  background: rgba(0, 123, 255, 1);
  /* Active bullet color */
}

/* Fullscreen styling for mobile devices */
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* Flex container */
.resort-gallery-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  width: 90%;
  margin: 0 auto;
}

/* Card styling */
.resort-gallery-card {
  flex: 1 1 calc(33.33% - 1rem);
  /* 3 items per row, gap adjusted */
  max-width: calc(33.33% - 1rem);
  max-height: 500px;
  /* Limit the card height */
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image styling */
.resort-gallery-card .resort-gallery-image {
  width: 100%;
  height: 100%;
  /* Ensure it fills the card while maintaining aspect ratio */
  object-fit: cover;
  /* Crop image to fit within the card */
  display: block;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  background: transparent;
}

.resort-gallery-card .resort-gallery-image:hover {
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;

}

.resort-gallery-card .resort-gallery-video {
  width: 100%;
  height: 100%;
  /* Ensure it fills the card while maintaining aspect ratio */
  object-fit: cover;
  /* Crop video to fit within the card */
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  background: #000;
  /* Fallback background color */
}

/* Modal styling */
.resort-gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal image */
.resort-gallery-modal-image {
  max-width: 60%;
  margin: 0 auto;
  /* max-height: 50%; */
  border-radius: 0.5rem;
}

/* Close button */
.resort-gallery-close {
  position: absolute;
  width: fit-content;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  background-color: var(--text-light);
  color: var(--accent-color);
  cursor: pointer;
  padding: 8px 8px 12px 8px;
  /* Equal padding all around */
  border-radius: 50%;
  z-index: 1001;
}

/* PDF VIEWER */
iframe {
  display: block;
  vertical-align: middle;
}

.tariff-container {
  margin-bottom: 70px;
}

.tariff-container iframe {
  border: 1px solid black;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  /* Stronger shadow */
}

/* PDF VIEWER */
/* Responsive styling */
@media (max-width: 768px) {
  .resort-gallery-card {
    flex: 1 1 100%;
    /* 1 item per row */
    max-width: 100%;
  }

  .resort-gallery-close {
    top: 50px;
  }

  .resort-gallery-modal-image {
    max-width: 90%;
  }
}

/* Resort Details */


/* EMPTY DATA */
.emptyData {
  text-align: center;
  margin: 30px 0;
}

.emptyData p {
  font-size: 20px;
}

.emptyData p a {
  font-weight: bold;
}

/* EMPTY DATA */

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  gap: 10px;
}

.pagination-link {
  display: inline-block;
  padding: 8px 15px;
  /* border: 1px solid #007bff; */
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: black;
  background-color: #FFDAB9;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination-link:hover {
  background-color: #FF6F61 ;
  color: #fff;
}

.pagination-link.active {
  background-color: #FF6F61 ;
  color: #fff;
  pointer-events: none;
  cursor: default;
}

.pagination-link[aria-disabled="true"] {
  color: #cccccc;
  border-color: #cccccc;
  pointer-events: none;
  cursor: default;
}

/* PAGINATION */



.resort-info {
  padding: 80px 0;
}

.res-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  position: relative;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #4A2D4A  ;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}

.section-title::after {
  content: "";
  width: 50%;
  height: 4px;
  background-color: #FF6F61  ;
  /* background-color: var(--footer); */
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 2px;
}


.resort-info-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.info-button {
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #FFDAB9 ;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-button:hover,
.info-button.active {
  background-color: #FF6F61   ;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 119, 204, 0.3);
}

.resort-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.resort-info-item {
  background-color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
}

.resort-info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background:#D4AF37;
}

.resort-info-item.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.resort-info-item h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #4A2D4A  ;
  border-bottom: 2px solid #FF6F61 ;
  padding-bottom: 15px;
  position: relative;
}

.resort-info-item h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  /* background-color: #00A896; */
}

.resort-info-item p,
.resort-info-item ul {
  font-size: 1.1rem;
  text-align: justify;
  line-height: 1.8;
  color: #555;
}

.resort-info-item ul {
  padding-left: 0;
  list-style-type: none;
}

.resort-info-item li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
 
}



.resort-info-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F4A261 ;
  /* color: var(--accent-color); */
  font-weight: bold;
  font-size: 1.2rem;
}

.resort-info-item p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .resort-info-buttons {
    flex-direction: row;
    align-items: center;
  }

  .info-button {
    font-size: 0.8rem;
    width: calc(45% - 10px);
    max-width: none;
  }

  .section-title {
    font-size: 2rem;
  }

  .resort-info-item {
    padding: 30px;
  }

  .resort-info-item h3 {
    font-size: 1.8rem;
  }

  .resort-info-item p,
  .resort-info-item ul {
    font-size: 1rem;
  }
}