* {
  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: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  background-color: rgb(85, 98, 91);
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(50%);
  /* Ensure no controls are shown */
  pointer-events: none; /* Prevents interaction with the video */

}


.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);
  }
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

.header-content h1 {
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
  font-weight: 390;
  color: #d59874;
  font-family: "Cormorant Garamond", serif;
  
}

.header-content p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 200;
  font-family: "Cormorant Garamond", serif;
}

.header-content .cta-button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: #ffffff00;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.header-content .cta-button:hover {
  background: #ffffff;
  color: rgb(4, 3, 3);
}

: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;
  }
}



@media (max-width: 768px) {
  .header-content h1 {
      font-size: 2rem;
  }

  .header-content p {
      font-size: 1rem;
  }

  .header-content .cta-button {
      font-size: 0.9rem;
      padding: 0.5rem 1rem;
  }

  .service-boxes {
      flex-direction: column;
  }



}

:root {
  --primary-color: #e6a481;
  --primary-hover: #cc8d6d;
  --secondary-color: #666666;
  --padding-large: 50px;
  --padding-small: 20px;
}

.about-maldives-section {
  padding: var(--padding-large) 0;
  background: #ffffff;
  text-align: left;
  overflow: hidden;
  margin-top: 25px;
}

.about-maldives-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  margin-top: 25px;
}

.info-box {
  display: flex;
  align-items: center;
  position: relative;
  animation: fadeIn 4s ease-in-out;
}

.text-content {
  flex: 1;
  z-index: 2;
  animation: slideUp 3s ease-in-out;
}

.text-content h2 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: var(--padding-small);
  font-weight: bold;
  font-family: "Cormorant Garamond", serif;
}

.text-content p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: var(--padding-small);
  font-family: "Tenor Sans", sans-serif;

  
}

.text-content .learn-more {
  display: inline-block;
  padding: 10px 20px;
  background: rgb(116, 137, 127);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.text-content .learn-more:hover {
  background: rgb(70, 82, 77);
}

.image-container {
  flex: 1;
  position: relative;
  animation: floatEffect 6s ease-in-out infinite;
}

.image-container .main-image {
  width: 100%;
  max-width: 500px;
  z-index: 2;
  position: relative;
  transform: translate(20px, -20px);
}

.image-container .background-image {
  position: absolute;
  top: -50px;
  left: 50px;
  width: 800px;
  height: 190%;
  z-index: 1;
  transform: translate(20px, 20px);
  animation: floatEffect 6s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideUp {
  from {
      transform: translateY(50px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes floatEffect {
  0% {
      transform: translate(20px, 20px);
  }
  50% {
      transform: translate(30px, 30px);
  }
  100% {
      transform: translate(20px, 20px);
  }
}
@media (max-width: 1254px){
  .about-maldives-section {
    padding: var(--padding-large) 0;
    background: #ffffff;
    text-align: left;
    overflow: hidden;
    padding-left: 20px;
    padding-right: 20px;
    
  }
  .about-maldives-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
}
@media (max-width: 768px) {

.about-maldives-section {
  padding: var(--padding-large) 0;
  background: #ffffff;
  text-align: left;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}
.about-maldives-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
 
  
}

  .about-maldives-section .info-box {
      flex-direction: column;
      margin-top: -60px;
      
      
  }

  .text-content {
      order: 3;
      margin-top: 80px;
  }

  .text-content h2 {
      font-size: 2rem;
      margin-bottom: 15px;
  }

  .text-content p {
    font-size: 0.83rem;
    margin-bottom: 15px;
  }

  .text-content .learn-more {
      font-size: 0.9rem;
      padding: 8px 15px;
  }

  .image-container {
      order: 2;
      margin: 15px 0;
      position: relative;
  }

  .image-container .main-image {
      width: 90%;
      max-width: 300px;
      transform: translate(10px, -10px);
  }

  .image-container .background-image {
      width: 190%;
      transform: translate(10px, 10px);
      height: 240px;
  }

  .text-content h2.title {
      order: 1;
      margin-bottom: 10px;
  }
}

.social-section {
  padding: 50px 0;
  background-color: #ffffff;
  text-align: center;
}

.social-section h2 {
  font-size: 2rem;
  color: #e6a481;
  margin-bottom: 20px;
  font-weight: 400;
  font-family: "Playwrite AU SA", serif;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgb(85, 98, 91);
  font-size: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.social-icons .instagram {
  animation: fadeInSequence 1s ease-in-out 0.5s forwards;
}

.social-icons .twitter {
  animation: fadeInSequence 1s ease-in-out 1.5s forwards;
}

.social-icons .icon:hover {
  background-color: #e6e6e6;
  transform: translateY(0) scale(1.1);
}

@keyframes fadeInSequence {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .social-section h2 {
      font-size: 1.8rem;
  }

  .social-icons {
      gap: 15px;
  }

  .social-icons .icon {
      width: 45px;
      height: 45px;
      font-size: 1.2rem;
  }
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1.5em;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s;
}

.scroller[data-direction="left"] .scroller__inner {
  --_animation-direction: normal;
}

.scroller[data-direction="right"] .scroller__inner {
  --_animation-direction: reverse;
}

.scroller[data-speed="fast"] .scroller__inner {
  --_animation-duration: 1s;
}

.scroller[data-speed="slow"] .scroller__inner {
  --_animation-duration: 10s;
}

@keyframes scroll {
  to {
      transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .gallery-item {
      min-width: 180px;
      height: 150px;
  }
}

.blog-section {
  padding: 60px 20px;
  background: #fff;
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-section h2 {
  text-align: center;
  font-size: 3rem;
  color: #e6a481;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: "Cormorant Garamond", serif;
}

.blog-posts {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
  padding-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.blog-post {
  flex: 0 0 auto;
  width: 80%;
  max-width: 300px;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.blog-post:hover {
  transform: translateY(-10px);
}

.blog-post img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post .post-content {
  padding: 20px;
}

.blog-post .post-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.blog-post .post-content p {
  font-size: 16px;
  margin-bottom: 10px;
}

.read-more {
  color: #b47334;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover {
  color: #0056b3;
}

.blog-posts::-webkit-scrollbar {
  height: 8px;
}

.blog-posts::-webkit-scrollbar-thumb {
  background: #717c74;
  border-radius: 4px;
}

.blog-posts::-webkit-scrollbar-track {
  background: #f4f4f4;
}

@media (max-width: 768px) {
  .blog-posts {
      justify-content: flex-start;
  }

  .blog-post {
      width: calc(100% - 40px);
  }
}

#image-slider {
  display: none;
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#image-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.9s ease-in-out;
  filter: brightness(0.4);
  box-shadow: inset 0px 0px 40px rgba(0, 0, 0, 0.7);
}
@media (min-width: 768px){
  .slogan{
    display: none;
  }
}
@media (max-width: 768px) {
  .slogan {
    position: absolute;
    top: 40%;
    left: 35%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 2.1rem;
    font-weight: 300;
    max-width: 78%;
    text-align: center;
     font-family: "Cormorant Garamond", serif;
  
  }
  
  .slogan h2 {
    font-weight: 350;
    color: #e6a481;


  }
  
  .tagline {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 300;
    text-align: center;


   
  }
  
  .request-quotation {
    position: absolute;
    top: 70%;
    left: 35%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .request-quotation:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    color: #000;
  }
  
  .video-background {
      display: none;
  }

  #image-slider {
      display: block;
  }

  .header-content {
      display: none;
  }

  .slogan, .tagline {
      font-size: 1.6rem;
  }

  .request-quotation {
      font-size: 1rem;
      padding: 10px 20px;
  }
  
}
@media (min-width: 768px){
  .request-quotation{
    display: none
  }
}


.availability-result {
  margin-top: 20px;
  padding: 15px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  font-size: 16px;
}

.availability-result.success {
  background-color: #d4edda;
  color: #155724;
}

.availability-result.error {
  background-color: #f8d7da;
  color: #721c24;
}

.reverse-layout {
  flex-direction: row-reverse;
}

.reverse-layout .image-container {
  flex: 1;
  position: relative;
  animation: floatEffect 6s ease-in-out infinite;
}

.reverse-layout .text-content {
  flex: 1;
  z-index: 2;
  animation: slideUp 5s ease-in-out;
  text-align: left;
}

.reverse-layout .text-content h2 {
  font-size: 3rem;
  color: #e6a481;
  margin-bottom: 20px;
  font-weight: bold;
}

.reverse-layout .text-content p {
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 20px;
}
@media (max-width: 768px){
  .reverse-layout .text-content p {
    font-size: 0.83rem;
    color: #666666;
    margin-bottom: 20px;
  }
}
  
.text-content .learn-more {
  display: inline-block;
  padding: 10px 20px;
  background: rgb(116, 137, 127);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.text-content .learn-more:hover {
  background: rgb(70, 82, 77);
}

  /* Adding some smooth transitions */
  .learn-more {
    transition: transform 0.3s ease, color 0.3s ease;
  }


  .main-image {
    transition: transform 1.5s ease-out;
  }

  .main-image:hover {
    transform: scale(1.05); /* Slight zoom effect for a calm feel */
  }

  /* Parallax effect */
  .background-image {
    object-fit: cover;
    transition: transform 1.5s ease-out;
  }

  .image-container {
    position: relative;
  }
/* Style for active link */
.active {
    color: #617a67 !important;  /* Use a strong color */
    font-weight: 900 !important; /* Ensure it’s bold */
  }
  .scroll-down-button {
    position: absolute;
    bottom: 40px;
    left: auto;
    transform: translateX(-50%);
    cursor: pointer;
    color: #cc8d6d;/* Inherited by the SVG */
    z-index: 10; /* Ensure it's above other elements */
    animation: bounce 2s infinite;
}

.chevron {
    width: 54px;
    height: 44px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
/* General Styles */
.booking-section {
  position: relative;
  height: auto;
  background-color: #ffffff;
  z-index: 2;
  margin-top: -50px;
  margin-bottom: -50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  padding: 20px;
}

.booking-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1 1 200px;
}

.form-group label {
  font-size: 14px;
  color: rgb(92, 108, 100);
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
}

.form-group input {
  padding: 8px;
  border: transparent;
  font-size: 14px;
  transition: border-color 0.3s ease;
  border-bottom: 1.4px solid rgb(70, 82, 76);
}

.form-group input:focus {
  border-color: rgb(119, 138, 128);
  outline: none;
}

.button-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button-container button {
  background-color: #ffffff;
  color: rgb(57, 66, 61);
  font-size: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(119, 138, 128);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button-container button:hover {
  background-color: rgb(119, 138, 128);
  color: #ffffff;
}

.number-display {
  font-size: 18px;
  font-weight: 500;
  width: 40px;
  text-align: center;
  color:  rgb(88, 111, 99);;
}

.check-availability-button {
  padding: 12px 25px;
  background-color: rgb(119, 138, 128);
  color: rgb(255, 255, 255);
  border: 1px solid rgb(119, 138, 128);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.check-availability-button:hover {
  background-color: rgb(68, 78, 73);

}

.check-availability-button {
  margin-left: auto;
}

.form-group select {
  padding: 8px;
  border: 1px solid #ccc;
  border: transparent;
  font-size: 19px;
  transition: border-color 0.3s ease;
  border-bottom: 1.4px solid rgb(70, 82, 76);
  font-family: "Cormorant Garamond", serif;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23555%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 40px; /* Space for dropdown arrow */}
  

.form-group select:focus {
  border-color: #a49b95;
  outline: none;
}

.form-group:nth-child(3),
.form-group:nth-child(4) {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-group:nth-child(3) label,
.form-group:nth-child(4) label {
  font-size: 14px;
  color: rgb(92, 108, 100);
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  font-weight: bold;
}

.form-group:nth-child(3) input,
.form-group:nth-child(3) select,
.form-group:nth-child(4) input,
.form-group:nth-child(4) select {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
  color: #555;
  width: auto;
  text-align: center;
}

.calendar-container {
  display: none;
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  z-index: 1000;
  margin-top: 60px;
  width: 100%;
  max-width: 600px;
}

.calendar-container.active {
  display: flex;
  gap: 20px;
  z-index: 1000;
}

.calendar {
  flex: 1;
}

.calendar label {
  display: block;
  font-size: 14px;
  color: rgb(66, 78, 72);
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  z-index: 1000;
}

.calendar input {
  width: 100%;
  padding: 8px;
  border: 1px solid rgb(92, 108, 100);
  font-size: 14px;
  text-align: center;
  z-index: 1000;
}

/* Responsive Styles */
@media (max-width: 1254px) {
  .booking-section{
    display: none;
  }

}

@media (max-width: 768px) {
  .booking-section {
    margin-top: -20px;
    margin-bottom: -20px;
    padding: 20px; /* Increased padding for better spacing */
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group select {
    font-size: 12px;
    padding: 10px; /* Adjusted padding for smaller screens */
  }

  .button-container button {
    width: 35px; /* Adjusted button size for smaller screens */
    height: 35px;
    font-size: 16px;
  }

  .number-display {
    font-size: 16px;
  }

  .check-availability-button {
    font-size: 12px;
    padding: 12px 25px; /* Adjusted padding for better touch targets */
  }

  .calendar-container {
    flex-direction: column;
    gap: 15px; /* Adjusted gap for better spacing */
  }
}

@media (max-width: 480px) {
  .booking-section {
    padding: 15px; /* Adjusted padding for better spacing */
  }

  .form-group label {
    font-size: 10px;
  }

  .form-group input,
  .form-group select {
    font-size: 10px;
    padding: 8px; /* Adjusted padding for smaller screens */
  }

  .button-container button {
    width: 30px; /* Adjusted button size for smaller screens */
    height: 30px;
    font-size: 14px;
  }

  .number-display {
    font-size: 14px;
  }

  .check-availability-button {
    font-size: 10px;
    padding: 10px 20px; /* Adjusted padding for better touch targets */
  }
}
/* Pop-up Banner Styles */
#popup-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none; /* Hidden by default */
  max-width: 300px;
  text-align: center;
}

#popup-banner.show {
  display: block; /* Show when triggered */
}

#popup-banner .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #333;
}

#popup-banner p {
  margin: 10px 0;
  font-size: 14px;
  color: #333;
}

#popup-banner a {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px; /* Larger padding for better touch targets */
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.8);
  font-weight: 400;
}

#popup-banner a:hover {
  background-color: #000;
  color: #ffffff;
}

/* Responsive Styles for Mobile Screens */
@media (max-width: 768px) {
  #popup-banner {
      max-width: 90%; /* Make the banner wider on small screens */
      bottom: 10px;
      right: 10px;
      padding: 15px;
  }

  #popup-banner p {
      font-size: 13px; /* Slightly smaller text for mobile */
  }

  #popup-banner a {
      padding: 10px 20px; /* Smaller padding for mobile */
      font-size: 14px; /* Smaller font size for mobile */
  }
}

@media (max-width: 480px) {
  #popup-banner {
      max-width: 100%; /* Full width on very small screens */
      bottom: 0;
      right: 0;
      border-radius: 0; /* Remove rounded corners for full-width banner */
  }

  #popup-banner a {
      width: 100%; /* Full-width button on very small screens */
      box-sizing: border-box; /* Ensure padding is included in width */
  }
}
/* Privacy and Policy Banner Styles */
#privacy-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  padding: 15px;
  text-align: center;
  z-index: 1001; /* Ensure it appears above other content */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#privacy-banner p {
  margin: 0;
  font-size: 14px;
}

#privacy-banner a {
  color: rgb(95, 115, 105);
  text-decoration: none;
}

#privacy-banner a:hover {
  text-decoration: underline;
}

#privacy-banner button {
  background-color: rgb(119, 138, 128);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#privacy-banner button:hover {
  background-color: rgb(72, 86, 79);
}

/* Responsive Styles for Privacy Banner */
@media (max-width: 768px) {
  #privacy-banner {
      flex-direction: column;
      padding: 10px;
  }

  #privacy-banner p {
      font-size: 12px;
  }

  #privacy-banner button {
      padding: 6px 12px;
      font-size: 12px;
  }
  .booking-section{
    display: none;
  }
}
@media (min-width: 1300px){
  .scroll-down-button{
    display: none;
  }
}
