body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  z-index: -2; /* Behind everything */
}

        body {
        font-family: 'Open Sans', sans-serif;
        max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    background-color: white;
      }

/* Make sure header and hero sections are above the background */
header, #hero {
  position: relative;
  z-index: 1;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(255,255,255, 0.9);
  padding: 0.5rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Add these lines */
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
}

    section:target {
    scroll-margin-top: 80px;
  }
     
  #booking-bar {
  background-color: #00313C;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

    .booking-content {
      max-width: 1200px;
      width: 100%;
      text-align: center;
    }

.book-button {
  display: inline-block;
  background-color: rgb(204, 104, 64);
  color: #fff;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

    .book-button:hover {
      background-color: rgb(170, 80, 44);
    }
    
    h2 {
      text-align: center;
      margin-bottom: 2rem;
    }
    
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .logo img {
      height: 100px;
      margin-top: 40px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
      align-items: center; /* Added for vertical alignment */
    }

    nav ul li {
      display: flex;
      align-items: center; /* Ensure each list item centers its content */
    }

    nav ul li a {
      font-weight: bold;
    }

    /* Book button styling for navigation */
    nav ul li a.book-button {
      background-color: rgb(204, 104, 64);
      color: white;
      padding: 8px 20px;
      border-radius: 6px;
      transition: background-color 0.3s ease;
      margin: 0;
      line-height: normal;
      white-space: nowrap;
    }

    nav ul li a.book-button:hover {
      background-color: rgb(170, 80, 44);
    }

    section {
      padding: 10px 20px;
    }

    #hero {
      height: 80vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      
    }

    #hero .overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.4);
    }

    #hero .hero-content {
      position: relative;
      z-index: 10;
      max-width: 550px;
      padding: 0 1rem;
    }

    #hero h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    #hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    .todo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }

    .todo-item {
      position: relative;
      height: 200px;
      border-radius: 12px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .todo-item:hover {
      transform: scale(1.02);
    }

    .todo-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
      font-weight: bold;
      text-align: center;
      padding: 1rem;
    }

    .room-box {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .room-box .room-image {
      flex: 1;
      background: #ccc;
      aspect-ratio: 3 / 2;
    }

    .room-box .room-text {
      flex: 2;
      padding: 20px;
    }

    #contact {
      background: #222;
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    #contact form {
      max-width: 400px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }

    #contact form input, #contact form textarea {
      margin-bottom: 1rem;
      padding: 0.75rem;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
    }

    #contact form button {
      background-color: rgb(204, 104, 64);
      color: white;
      padding: 0.75rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    footer {
      text-align: center;
      padding: 1.5rem 0;
      background: #00313C;
      color: #aaa;
    }
    
          .packages-carousel .todo-item,
      .todo-carousel .todo-item {
        display: block;
        background-size: cover;
        background-position: center;
        border-radius: 10px;
        height: 250px;
        margin: 5px;
        position: relative;
        overflow: hidden;
      }
      .packages-carousel .todo-overlay,
      .todo-carousel .todo-overlay {
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        text-align: center;
        padding: 10px;
        font-weight: bold;
      }
      .packages-carousel .slick-slide,
      .todo-carousel .slick-slide {
        padding: 5px;
      }

    /* Map section styles */
    .map-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
    }

    .map-column {
      flex: 1;
      min-width: 300px;
    }

    .map-column iframe {
      width: 100%;
      height: 520px;
      border: 0;
    }

    .full-width-image {
      width: 100%;
    }

    /* Booking bar styles */
    #booking-bar {
      background-color: #00313C;
      padding: 20px 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .booking-content {
      max-width: 1200px;
      width: 100%;
      text-align: center;
    }

    .book-button {
      display: inline-block;
      background-color: rgb(204, 104, 64);
      color: #fff;
      padding: 8px 20px;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      margin: 0;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
      line-height: 1.2;
    }

    .book-button:hover {
      background-color: rgb(170, 80, 44);
    }

    /* Carousel arrow styles */
    .slick-prev, .slick-next {
      width: 40px;
      height: 40px;
      z-index: 1;
    }

    .slick-prev:before, .slick-next:before {
      font-size: 40px;
      color: rgb(204, 104, 64);
      opacity: 1;
    }

    .slick-prev:hover:before, .slick-next:hover:before {
      color: rgb(170, 80, 44);
    }

    .slick-prev {
      left: -45px;
    }

    .slick-next {
      right: -45px;
    }

    @media (max-width: 768px) {
      .todo-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .room-box {
        flex-direction: column;
      }
      
      .map-column {
        flex: 100%;
      }

      /* Mobile menu styles */
      .menu-toggle {
          display: block;
          background-color: transparent;
          border: none;
          font-size: 28px;
          cursor: pointer;
          position: absolute;
          top: 15px;
          right: 20px;
          z-index: 1000;
      }

      nav ul {
          display: none;
          flex-direction: column;
          background-color: #fff;
          position: absolute;
          top: 80px;
          right: 0;
          width: 200px;
          box-shadow: 0 2px 5px rgba(0,0,0,0.3);
          padding: 20px;
          gap: 1rem;
      }

      nav ul.show {
          display: flex;
      }

      nav ul li {
        justify-content: center;
      }

      nav ul li a.book-button {
        margin: 10px 0;
        text-align: center;
        display: block;
        width: 100%;
      }

      /* Hide hamburger on desktop */
      .menu-toggle {
        display: none;
      }

      /* Adjust carousel arrows for mobile */
      .slick-prev {
        left: -25px;
      }

      .slick-next {
        right: -25px;
      }

      .slick-prev:before, .slick-next:before {
        font-size: 30px;
      }
    }

    /* Show hamburger only on mobile */
    @media (min-width: 769px) {
      .menu-toggle {
        display: none !important;
      }
    }

