* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  body {
      font-family: 'Open Sans', sans-serif;
      color: #333;
      line-height: 1.6;
  }
  header {
      height: 100vh;
      background: url('../images/banner.jpg') no-repeat center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
  }
  header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
  }
  header h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      z-index: 1;
  }
  header p {
      font-size: 1.2rem;
      margin: 1rem 0;
      z-index: 1;
  }
  .btn {
      display: inline-block;
      padding: 0.8rem 1.5rem;
      background: #d4a373;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      z-index: 1;
      margin: 0.5rem;
  }
  .btn:hover {
      background: #b38b59;
  }
  nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      z-index: 1000;
  }
  nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
      padding: 1rem 0;
  }
  nav ul li {
      margin: 0 1.5rem;
  }
  nav ul li a {
      text-decoration: none;
      color: #333;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
  }
  nav ul li a:hover {
      color: #d4a373;
  }
  section {
      padding: 4rem 2rem;
      text-align: center;
  }
  section h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.5rem;
      margin-bottom: 1rem;
  }
  section h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
  }
  .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin: 2rem 0;
  }
  .amenity {
      background: #f9f9f9;
      padding: 1rem;
      border-radius: 5px;
  }
  .amenity img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      border-radius: 5px;
  }
  #map {
      height: 300px;
      margin: 2rem 0;
  }
  footer {
      background: #333;
      color: white;
      text-align: center;
      padding: 1rem;
  }
  footer a {
      color: #d4a373;
      text-decoration: none;
  }
  footer a:hover {
      color: #b38b59;
  }
  @media (max-width: 768px) {
      header h1 {
          font-size: 2rem;
      }
      nav ul {
          flex-direction: column;
          padding: 0.5rem 0;
      }
      nav ul li {
          margin: 0.5rem 0;
      }
      section {
          padding: 2rem 1rem;
      }
  }
