* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Josefin Sans', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }
  
  header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background-color: rgb(85, 98, 91);
  }
  

  .logo-container {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1002;
    margin-top: -58px;
    margin-left: -20px;
  }
  
  .logo {
    width: 200px;
    height: 200px;
  }
  
  .sticky {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .destinations-link {
    position: relative;
  }
  
  .resorts-list {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    z-index: 100;
    width: max-content;
  }
  
  .destinations-link:hover .resorts-list {
    display: flex;
  }
  
  .experiences-column {
    display: flex;
    flex-direction: column;
  }
  
  .experiences-column h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3e5947;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .experiences-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .experiences-column ul li {
    margin: 20px 10px;
  }
  
  .experiences-column ul li a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
    font-size: 13px;
  }
  
  .experiences-column ul li a:hover {
    color: #d59874; /* Match your hover color */
  }
  
  .vertical-divider {
    width: 1px;
    background: #ddd;
    height: auto;
  }
  
  
  /* Mobile-specific styles */
  @media (max-width: 768px) {
    header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    background-color: rgb(85, 98, 91);
  }
  .resorts-list ul li a {
  color: #465a65;
  font-weight: bolder;
  
  }
  .destinations-link {
    position: relative;
  }
  
  .resorts-list {
    display: none; /* Hidden by default */
    position: static; /* Display in the normal flow */
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
  }
  
  .resorts-grid {
    display: flex;
    flex-direction: column; /* Vertical layout */
    gap: 10px; /* Space between links */
    padding: 10px 0; /* Add some padding */
  }
  
  .resorts-grid a {
    color: #fffbf7; /* Match your mobile nav link color */
    text-decoration: none;
    font-size: 6px; /* Slightly smaller font size */
    padding: 8px 20px; /* Add padding for better touch targets */
    background-color: rgba(255, 255, 255, 0.1); /* Light background for visibility */
    border-radius: 4px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .resorts-grid a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Hover effect */
    color: #d59874; /* Match your hover color */
  }
  
  /* Push other links down when destinations are expanded */
  .destinations-link.active .resorts-list {
    display: block; /* Show the resorts list */
  
  }
  
  .destinations-link.active ~ li {
    margin-top: 100%; /* Push other links down */
  }
  }
  /* Mobile-specific styles */
  @media (max-width: 1024px) {
  .resorts-list ul li a {
  color: #465a65;
  font-weight: bolder;
  
  }
  .destinations-link {
    position: relative;
  }
  
  .resorts-list {
    display: none; /* Hidden by default */
    position: static; /* Display in the normal flow */
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
  }
  
  .resorts-grid {
    display: flex;
    flex-direction: column; /* Vertical layout */
    gap: 10px; /* Space between links */
    padding: 10px 0; /* Add some padding */
  }
  
  .resorts-grid a {
    color: #fffbf7; /* Match your mobile nav link color */
    text-decoration: none;
    font-size: 6px; /* Slightly smaller font size */
    padding: 8px 20px; /* Add padding for better touch targets */
    background-color: rgba(255, 255, 255, 0.1); /* Light background for visibility */
    border-radius: 4px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .resorts-grid a:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Hover effect */
    color: #d59874; /* Match your hover color */
  }
  
  /* Push other links down when destinations are expanded */
  .destinations-link.active .resorts-list {
    display: block; /* Show the resorts list */
  
  }
  
  .destinations-link.active ~ li {
    margin-top: 100%; /* Push other links down */
  }
  }
  
  
  /* Mobile-specific styles */
  @media (max-width: 768px) {
    .resorts-list ul li a {
      color: #465a65;
      font-weight: bolder;
  
    }
    .destinations-link {
        position: relative;
    }
  
    .resorts-list {
        display: none; /* Hidden by default */
        position: static; /* Display in the normal flow */
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        width: 100%;
    }
  
    .resorts-grid {
        display: flex;
        flex-direction: column; /* Vertical layout */
        gap: 10px; /* Space between links */
        padding: 10px 0; /* Add some padding */
    }
  
    .resorts-grid a {
        color: #fffbf7; /* Match your mobile nav link color */
        text-decoration: none;
        font-size: 6px; /* Slightly smaller font size */
        padding: 8px 20px; /* Add padding for better touch targets */
        background-color: rgba(255, 255, 255, 0.1); /* Light background for visibility */
        border-radius: 4px; /* Rounded corners */
        transition: background-color 0.3s ease, color 0.3s ease;
    }
  
    .resorts-grid a:hover {
        background-color: rgba(255, 255, 255, 0.2); /* Hover effect */
        color: #d59874; /* Match your hover color */
    }
  
    /* Push other links down when destinations are expanded */
    .destinations-link.active .resorts-list {
        display: block; /* Show the resorts list */
  
    }
  
    .destinations-link.active ~ li {
        margin-top: 100%; /* Push other links down */
    }
  }
    /* Mobile-specific styles */
  @media (max-width: 1024px) {
    .resorts-list ul li a {
      color: #465a65;
      font-weight: bolder;
  
    }
    .destinations-link {
        position: relative;
    }
  
    .resorts-list {
        display: none; /* Hidden by default */
        position: static; /* Display in the normal flow */
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        width: 100%;
    }
  
    .resorts-grid {
        display: flex;
        flex-direction: column; /* Vertical layout */
        gap: 10px; /* Space between links */
        padding: 10px 0; /* Add some padding */
    }
  
    .resorts-grid a {
        color: #fffbf7; /* Match your mobile nav link color */
        text-decoration: none;
        font-size: 6px; /* Slightly smaller font size */
        padding: 8px 20px; /* Add padding for better touch targets */
        background-color: rgba(255, 255, 255, 0.1); /* Light background for visibility */
        border-radius: 4px; /* Rounded corners */
        transition: background-color 0.3s ease, color 0.3s ease;
    }
  
    .resorts-grid a:hover {
        background-color: rgba(255, 255, 255, 0.2); /* Hover effect */
        color: #d59874; /* Match your hover color */
    }
  
    /* Push other links down when destinations are expanded */
    .destinations-link.active .resorts-list {
        display: block; /* Show the resorts list */
  
    }
  
    .destinations-link.active ~ li {
        margin-top: 100%; /* Push other links down */
    }
  }
  @media (max-width: 768px) {
    .language-toggle{
        display: none;
    }
    .sticky .mobile-header-bar {
        background-color: #ffffff !important;
        
    }
  
    .sticky .logo {
        content: url('logo2.svg');
        width: 200px;
        height: 200px;
    }
  
    .logo-container {
        display: none;
    }
  
    body.menu-open .mobile-header-bar {
        background-color: transparent;
        box-shadow: none;
    }
  
    body.menu-open .mobile-header-bar .close-menu {
        display: block;
        font-size: 30px;
        color: #000;
        background: none;
        border: none;
        cursor: pointer;
        padding-right: 20px;
    }
  
    .mobile-header-bar .close-menu {
        display: none;
    }
  
    body.menu-open .mobile-header-bar {
        height: 65px !important;
        align-items: center !important;
        justify-content: space-between;
        padding: 0 20px;
        background-color: rgba(192, 192, 177, 0.976);
    }
  
    body.menu-open .mobile-header-bar .logo {
        width: 180px;
        height: 180px;
        margin-left: -45px;
        margin-top: -16px;
        transition: none;
    }
  
    .mobile-header-bar .logo {
        width: 180px;
        height: 180px;
        margin-left: -45px;
        margin-top: -16px;
    }
  
    .mobile-header-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background-color: rgba(255, 255, 255, 0);
        z-index: 1003;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
  
    header {
        margin-top: 0;
    }
  
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(200, 186, 165);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.7s ease-in-out;
        z-index: 1000;
        overflow: scroll;
    }
  
    .mobile-nav.active {
        transform: translateX(0);
        transition: transform 0.7s ease-in-out;
    }
  
    .mobile-nav::-webkit-scrollbar {
        width: 8px;
    }
  
    .mobile-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
    }
  
    .mobile-nav::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }
  
    .logo {
        margin-bottom: -20px;
        align-self: flex flex-end;
        content: url('logo.svg');
        width: 280px;
    }
  
    .nav-container {
        flex-grow: 1;
        overflow-y: auto;
        width: 100%;
        max-height: calc(100% - 80px);
    }
  
    .nav-links {
        text-align: left;
        list-style: none;
        margin: 0;
        font-weight: 100;
        padding-left: 10px;
        padding-top: 10px;
    }
  
    .additional-links {
        text-align: left;
        list-style: none;
        margin: 0;
        font-weight: 100;
        padding-left: 10px;
        padding-top: 100px;
    }
  
    .nav-links li, .additional-links li {
        margin: 5px 0;
    }
  
    .nav-links a, .additional-links a {
        color: #fffbf7;
        font-size: 30px;
        padding: 10px 10px;
        display: block;
        transition: color 0.3s ease;
        text-decoration: none;
    }
  
    .nav-links a:hover, .nav-links a:focus, .additional-links a:hover, .additional-links a:focus {
        color: #254441;
    }
  
    .separator {
        width: 100%;
        border: 0;
        border-top: 1px solid #fff;
        margin: 20px 0;
    }
  
    .language-options {
        display: absolute;
        gap: 15px;
        margin-top: 300px;
    }
  
    .language-options a {
        color: #000000;
        font-size: 16px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
  
    .language-options a:hover, .language-options a:focus {
        color: #254441;
    }
  
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        color: rgb(192, 192, 177);
        font-size: 30px;
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.3s ease;
    }
  
    .close-menu:hover, .close-menu:focus {
        color: #ffcc00;
    }
  
    .hamburger {
        position: fixed;
        top: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
  
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #cea68e;
        transition: all 0.3s ease;
    }
  
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background-color: #617a67;
        font-weight: bold;
    }
  
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        background-color: #617a67;
    }
  
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background-color: #617a67;
    }
  
    body.menu-open .mobile-header-bar.sticky {
        position: static;
        background-color: transparent !important;
        box-shadow: none !important;
    }
  
    body.menu-open .mobile-header-bar.sticky .logo {
        content: url('logo.svg') !important;
        width: 200px !important;
        height: 200px !important;
    }
  
    body.menu-open .mobile-header-bar {
        background-color: transparent !important;
        box-shadow: none !important;
    }
  
  
  }
  @media (max-width: 1024px) {
    .language-toggle{
        display: none;
    }
    .sticky .mobile-header-bar {
        background-color: #ffffff !important;
        transition: background-color 0.9s ease, padding 0.9s ease;
    }
  
  
    .sticky .logo {
      content: url('logo2.svg');
      width: 200px;
      height: 200px;
    }
  
    .logo-container {
        display: none;
    }
  
    body.menu-open .mobile-header-bar {
        background-color: transparent;
        box-shadow: none;
    }
  
    body.menu-open .mobile-header-bar .close-menu {
        display: block;
        font-size: 30px;
        color: #000;
        background: none;
        border: none;
        cursor: pointer;
        padding-right: 20px;
    }
  
    .mobile-header-bar .close-menu {
        display: none;
    }
  
    body.menu-open .mobile-header-bar {
        height: 65px !important;
        align-items: center !important;
        justify-content: space-between;
        padding: 0 20px;
        background-color: rgba(192, 192, 177, 0.976);
    }
  
    body.menu-open .mobile-header-bar .logo {
      width: 210px;
      height: 200px !important;
      margin-left: -45px;
      margin-top: 14px;
      transition: none;
      content: url('logo2.svg')
        
    }
  
    .mobile-header-bar .logo {
        width: 210px;
        height: 200px !important;
        margin-left: -45px;
        margin-top: -8px;
      
    }
  
    .mobile-header-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 85px;
        background-color: rgba(255, 255, 255, 0);
        z-index: 1003;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
  
    header {
        margin-top: 0;
    }
  
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(255, 255, 255);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.7s ease-in-out;
        z-index: 1000;
        overflow: scroll;
        
    }
  
    .mobile-nav.active {
        transform: translateX(0);
        transition: transform 0.7s ease-in-out;
    }
  
    .mobile-nav::-webkit-scrollbar {
        width: 8px;
    }
  
    .mobile-nav::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 10px;
    }
  
    .mobile-nav::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }
  
    .logo {
        margin-bottom: -20px;
        align-self: flex flex-end;
        content: url('logo.svg');
        width: 290px;
        
    }
  
    .nav-container {
        flex-grow: 1;
        overflow-y: auto;
        width: 100%;
        max-height: calc(100% - 85px);
    }
  
    .nav-links {
        text-align: left;
        list-style: none;
        margin: 0;
        font-weight: 100;
        padding-left: 10px;
        padding-top: 10px;
    }
  
    .additional-links {
        text-align: left;
        list-style: none;
        margin: 0;
        font-weight: 100;
        padding-left: 10px;
        padding-top: 100px;
    }
  
    .nav-links li, .additional-links li {
        margin: 5px 0;
    }
  
    .nav-links a, .additional-links a {
        color: #585757;
        font-size: 26px;
        padding: 10px 10px;
        display: block;
        transition: color 0.3s ease;
        text-decoration: none;
        font-weight: 200;
        font-family: "Tenor Sans", sans-serif;
    }
  
    .nav-links a:hover, .nav-links a:focus, .additional-links a:hover, .additional-links a:focus {
        color: #254441;
  
    }
  
    .separator {
        width: 100%;
        border: 0;
        border-top: 1px solid #000000;
        margin: 20px 0;
    }
  
    .language-options {
        display: absolute;
        gap: 15px;
        margin-top: 300px;
    }
  
    .language-options a {
        color: #3d3d3d;
        font-size: 16px;
        text-decoration: none;
        transition: color 0.3s ease;
    }
  
    .language-options a:hover, .language-options a:focus {
        color: #151515;
    }
  
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        color: rgb(255, 255, 255);
        font-size: 30px;
        background: none;
        border: none;
        cursor: pointer;
        transition: color 0.3s ease;
    }
  
    .close-menu:hover, .close-menu:focus {
        color: #ffcc00;
    }
  
    .hamburger {
        position: fixed;
        top: 35px;
        right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
  
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #cea68e;
        transition: all 0.3s ease;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background-color: #3d3d3d;
        font-weight: bold;
    }
  
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        background-color: #3d3d3d;
    }
  
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        background-color: #3d3d3d;
    }
  
    body.menu-open .mobile-header-bar.sticky {
        position: static;
        background-color: transparent !important;
        box-shadow: none !important;
        
    }
  
    body.menu-open .mobile-header-bar.sticky .logo {
        content: url('logo.svg') !important;
        width: 200px !important;
        height: 200px !important;
    }
  
    body.menu-open .mobile-header-bar {
        background-color: transparent !important;
        box-shadow: none !important;
    }
  
  
  }
  
  @media (min-width: 1024px) {
  
    .mobile-header-bar .logo {
        display: none;
    }
  
    .additional-links {
        display: none;
    }
  
    .hamburger, .close-menu {
        display: none;
    }
  
    .mobile-nav {
        position: fixed;
        top: 0;
        width: 100%;
        background-color: transparent;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        z-index: 1000;
        transition: background-color 0.3s ease, padding 0.3s ease;
    }
  
    .sticky .mobile-nav {
        background-color: #ffffff !important;
        padding: 40px 40px;
    }
  
    .sticky .logo {
        content: url('logo2.svg');
        width: 200px;
        height: 200px;
    }
  
    .nav-links {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        list-style: none;
    }
  
    .nav-links li {
        margin: 0 20px;
        position: relative;
    }
  
    .nav-links a {
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }
  
    .sticky .nav-links a {
        color: #000;
    }
  
    .nav-links a:hover, .nav-links a:focus {
        color: #d59874;
    }
  
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #fff;
        transition: width 0.3s ease, left 0.3s ease;
    }
  
    .nav-links a:hover::after, .nav-links a:focus::after {
        width: 100%;
        left: 0;
    }
  
  .language-options{
    display: none
  }
    .booking-button {
        background-color: #333;
        color: #fff;
        padding: 5px 15px;
        border: none;
        font-size: 14px;
        text-transform: uppercase;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
  
    .booking-button:hover, .booking-button:focus {
        background-color: #666;
    }
  }
  @media (min-width: 1024px) {
      .sticky {
          background-color: white;
          box-shadow: 0 4px 6px rgba(32, 26, 26, 0.1);
          margin-top: -15px;
      }
    .language-toggle {
        position: relative;
    }
  
    .language-toggle button {
        background: none;
        border: none;
        color: #cea68e;
        font-size: 18px;
        cursor: pointer;
        padding: 8px 16px;
        border-radius: 4px;
        transition: background-color 0.3s ease, color 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px; /* Space between text and icon */
        font-weight: 500;
    }
  
    .language-toggle button:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
  
    .sticky .language-toggle button {
        color: #d19f80;
    }
  
    .sticky .language-toggle button:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
  
    .language-icon {
        font-size: 15px; /* Adjust icon size */
        transition: transform 0.3s ease; /* Add rotation animation */
    }
  
    .language-toggle.active .language-icon {
        transform: rotate(180deg); /* Rotate icon when active */
    }
  
    .language-options-vertical {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #fff;
        border-radius: 6px;
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        z-index: 1000;
        min-width: 120px;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
  
    .language-options-vertical a {
        color: #333;
        font-size: 14px;
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 4px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
  
    .language-options-vertical a:hover, .language-options-vertical a:focus {
        background-color: rgba(0, 0, 0, 0.05);
        color: #d19f80;
    }
  
    .language-toggle.active .language-options-vertical {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
  }
  .header-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height for header */
    overflow: hidden;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area */
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: brightness(0.5);
}

.slide.active {
    opacity: 1;
}

/* Dark overlay for each slide */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity to control darkness */
    z-index: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2; /* Ensure it's above the dark overlay */
    color: white;
}

.slogan {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;
    color: #d3b089;
}

.book-now-btn {
    padding: 12px 20px;
    font-size: 1rem;
    background: #ffffff00;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    border: 2px solid #ffffff;
}


.book-now-btn:hover {
    border: 2px solid #d19f80;
    color: #d19f80;

}
.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2; /* Ensure it's above the dark overlay */
    color: white;
    max-width: 800px; /* Limit width for better readability */
    width: 90%; /* Responsive width */
}

.slogan {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.subheading {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: "Cormorant Garamond", serif;

}
.scroll-down-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-decoration: none;
    color: white;
    animation: bounce 2s infinite; /* Add a bounce animation */
}

.chevron {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: -10px auto 0;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
.resort-intro {
    display: flex;
    flex-direction: column; /* Stack elements vertically on smaller screens */
    align-items: flex-start; /* Align items to the left */
    justify-content: center;
    padding: 40px 20px; /* Reduced padding for smaller screens */
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px; /* Reduced gap for smaller screens */
}

.resort-logo {
    order: 2; /* Move logo to the bottom (right side in column layout) */
    text-align: right; /* Align logo to the right */
    width: 100%; /* Ensure the logo container takes full width */
}

.resort-logo img {
    max-width: 100%; /* Make logo responsive */
    height: auto;
}

.resort-info {
    order: 1; /* Move text to the top (left side in column layout) */
    text-align: left; /* Align text to the left */
}

.resort-info h2 {
    font-size: 2rem; /* Smaller font size for smaller screens */
    margin-bottom: 10px;
    color: #575552;
    font-family: "Cormorant Garamond", serif;
}

.resort-info .tagline {
    font-size: 1rem; /* Smaller font size for smaller screens */
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

.resort-info .description {
    font-size: 1rem; /* Smaller font size for smaller screens */
    line-height: 1.6;
    color: #666;
    font-family: "Cormorant Garamond", serif;
}

/* Media Queries for Responsiveness */
@media (min-width: 768px) {
    .resort-intro {
        flex-direction: row; /* Revert to horizontal layout on larger screens */
        align-items: center; /* Center items vertically */
        padding: 60px 20px; /* Restore padding for larger screens */
        gap: 40px; /* Restore gap for larger screens */
    }

    .resort-logo {
        order: 1; /* Move logo back to the left in the horizontal layout */
        text-align: center; /* Center logo in the horizontal layout */
    }

    .resort-info {
        order: 2; /* Move text back to the right in the horizontal layout */
        text-align: left; /* Align text to the left */
    }

    .resort-info h2 {
        font-size: 2.5rem; /* Restore font size for larger screens */
    }

    .resort-info .tagline {
        font-size: 1.1rem; /* Restore font size for larger screens */
    }

    .resort-info .description {
        font-size: 1.1rem; /* Restore font size for larger screens */
    }
}

@media (min-width: 1024px) {
    .resort-logo img {
        max-width: 400px; /* Restore logo size for larger screens */
    }
}
.room-categories {
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.room-categories h2 {
    font-size: 3em;
    color: #2d4b40;
    font-weight: 100;
    border-bottom: 2px solid #caae8b; /* Adjust the color to fit your theme */
    display: inline-block; /* Ensures the line does not stretch across the full width */
    padding-bottom: 5px; /* Adds some spacing between the text and the border */
    margin-bottom: 20px; /* Space below the heading */
    font-family: "Cormorant Garamond", serif;

}

.categories-container {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-behavior: smooth;
    gap: 20px; /* Space between cards */
    padding: 0 20px;
    scroll-snap-type: x mandatory; /* Snap cards into place */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on touch devices */
}

.category-card {
    flex: 0 0 calc(33.33% - 20px); /* 3 cards per row */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    overflow: hidden;
    scroll-snap-align: start; /* Snap cards to the start of the container */
}

/* Hide scrollbar for a cleaner look */
.categories-container::-webkit-scrollbar {
    display: none;
}

.categories-container {
    -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.card-image {
    width: 100%;
    height: 200px; /* Fixed height for images */
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area */
}

.category-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 10px;
    color: #222;
    font-family: "Cormorant Garamond", serif;
}

.category-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0 20px 15px;
    font-family: "Cormorant Garamond", serif;
}

.category-card ul {
    list-style: none;
    padding: 0 20px 20px;
    margin: 0;
}

.category-card ul li {
    font-size: 0.9rem;
    color: #b3937d;
    margin-bottom: 10px;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-card {
        flex: 0 0 calc(50% - 20px); /* 2 cards per row on smaller screens */
    }
}

@media (max-width: 480px) {
    .category-card {
        flex: 0 0 100%; /* 1 card per row on mobile */
    }
}
.gallery-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff; /* Light background */
}

.gallery-title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #6f6354;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px; /* Space between images */
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(136, 120, 120, 0.5); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}

.overlay-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 200;
    text-align: center;
    text-shadow: 2px 2px 4px rgb(0, 0, 0);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Cormorant Garamond", serif;

}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(102, 88, 88, 0.237);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
    .gallery-title {
        font-size: clamp(1.5rem, 6vw, 4rem); /* Adjust font size for smaller screens */
    }

    .gallery-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Smaller min width */
        gap: 1.5%; /* Reduce gap for smaller screens */
    }

    .overlay-text {
        font-size: clamp(0.9rem, 4vw, 1.2rem); /* Adjust overlay text size */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Even smaller min width */
        gap: 1%; /* Further reduce gap */
    }

    .gallery-title {
        font-size: clamp(2rem, 5vw, 2rem); /* Adjust font size for very small screens */
    }

    .gallery-subtitle {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }

    .overlay-text {
        font-size: clamp(0.8rem, 3.5vw, 1rem); /* Adjust overlay text size */
    }
}
.map-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #e1ceac; /* Light background */
}

.map-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.map-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.map-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.resort-map {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-point {
    position: absolute;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-point:hover {
    transform: scale(1.2); /* Enlarge on hover */
}

.point {
    width: 15px;
    height: 15px;
    background-color: #ff5a5f; /* Red dot */
    border-radius: 50%;
    position: relative;
    z-index: 10;
}

.info-box {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.map-point:hover .info-box {
    opacity: 1; /* Show info box on hover */
}

        /* Food & Beverage Section */
        .food-beverage {
            padding: 60px 20px;
            text-align: center;
            position: relative;
        }

        .food-beverage h2 {
            font-size: 3em;
            color: #2d4b40;
            font-weight: 100;
            border-bottom: 2px solid #caae8b;
            display: inline-block;
            padding-bottom: 5px;
            margin-bottom: 20px;
            font-family: "Cormorant Garamond", serif;
        }

        .food-container {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            gap: 20px;
            padding: 0 20px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .food-card {
            flex: 0 0 calc(33.33% - 20px);
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: left;
            overflow: hidden;
            scroll-snap-align: start;
        }

        /* Hide scrollbar */
        .food-container::-webkit-scrollbar {
            display: none;
        }

        .food-container {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .food-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .food-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .food-card h3 {
            font-size: 1.5rem;
            margin: 20px 20px 10px;
            color: #222;
        }

        .food-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
            margin: 0 20px 15px;
        }

        .scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 24px;
            z-index: 10;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .prev-btn {
            left: 10px;
        }

        .next-btn {
            right: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .food-card {
                flex: 0 0 calc(50% - 20px);
            }
        }

        @media (max-width: 480px) {
            .food-card {
                flex: 0 0 100%;
            }
        }
        :root {
            --primary-color: #e6a481;
            --primary-hover: #ffad81;
            --secondary-color: #435c76;
            --bg-color: #f5f5f5;
            --bot-message-bg: #ffffff;
            --border-color: #e0e0e0;
            --text-color: #ffffff;
          }
          
          #chatbot-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
          }
          
          #chatbot-toggle {
            background-color: #ba927c;
            color: #ffffff;
            font-size: 1.5rem;
            width: 60px;
            height: 60px;
            border-radius: 80%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease, background-color 0.3s;
          }
          
          #chatbot-toggle:hover {
            background-color: #a4755c;
            transform: scale(1.1);
          }
          
          #chatbot-toggle:active {
            transform: scale(0.95);
          }
          
          #chatbot-toggle i {
            font-size: 1.8rem;
          }
          
          #chatbot {
            display: none;
            flex-direction: column;
            width: 350px;
            height: 500px;
            background-color: #f5f5f5;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
          }
          
          #header {
            background-color: #e6a481;
            color: #ffffff;
            text-align: left;
            padding: 15px;
            font-size: 1.2rem;
            font-weight: 200;
          }
          
          #message-section {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #cccccc #ffffff;
          }
          
          #message-section::-webkit-scrollbar {
            width: 6px;
          }
          
          #message-section::-webkit-scrollbar-track {
            background: #ffffff;
          }
          
          #message-section::-webkit-scrollbar-thumb {
            background-color: #cccccc;
            border-radius: 3px;
          }
          
          .message {
            max-width: 75%;
            margin-bottom: 10px;
            padding: 10px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
            word-wrap: break-word;
          }
          
          .bot-message {
            background-color: rgb(255, 255, 255);
            border: 1px solid #e0e0e0;
            align-self: flex-start;
          }
          
          .user-message {
            background-color: #435c76;
            color: #ffffff;
            align-self: flex-end;
          }
          
          #input-section {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            border-top: 1px solid #e0e0e0;
          }
          
          #input-section input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ffffff;
            border-radius: 20px;
            outline: none;
            font-size: 0.9rem;
            transition: border-color 0.3s;
          }
          
          #input-section input:focus {
            border-color: var(--primary-color);
          }
          
          .send {
            background: #e6a481;
            border: none;
            margin-left: 10px;
            width: 40px;
            height: 40px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s;
          }
          
          .send:hover {
            background: #ffad81;
          }
          
          .send i {
            color: #ffffff;
            font-size: 1.2rem;
          }
          
          .close-button {
            position: absolute;
            top: 11px;
            right: 12px;
            background: transparent;
            border: none;
            color: #435c76;
            cursor: pointer;
            transition: transform 0.2s ease, opacity 0.3s ease;
          }
          
          .close-button span {
            font-size: 20px;
            color: #435c76;
            font-weight: 20;
          }
          
          @media screen and (max-width: 768px) {
            #chatbot {
                width: 250px;
                height: 370px;
            }
          }