/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #f4f4f4;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header .logo img {
    height: 80px; /* Larger logo */
  }
  
  nav {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links li a {
    font-weight: 400;
    color: #8B4513;
  }
  
  .language-toggle {
    font-size: 14px;
    color: #8B4513;
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #8B4513;
    margin: 4px 0;
    transition: 0.4s;
  }
  
  /* Hero Section */
  .hero {
    background-image: url('hero-placeholder.jpg'); /* Placeholder for hero image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .hero-content h2 {
    font-size: 48px;
    margin: 0;
  }
  
  .hero-content p {
    font-size: 24px;
    margin: 10px 0 20px;
  }
  
  .btn {
    background-color: #8B4513;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
  }
  
  /* Suites Section */
  .suites {
    padding: 60px 20px;
    text-align: center;
  }
  
  .suite-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .suite {
    width: 30%;
    margin-bottom: 20px;
  }
  
  .suite img {
    width: 100%;
    border-radius: 10px;
  }
  
  .suite h3 {
    margin: 15px 0 10px;
    font-size: 24px;
  }
  
  .suite p {
    font-size: 16px;
    color: #666;
  }
  
  /* Experience Section */
  .experience {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .experience p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 18px;
  }
  
  .gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  
  .gallery img {
    width: 30%;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  /* Contact Section */
  .contact {
    padding: 60px 20px;
    text-align: center;
  }
  
  .contact p {
    font-size: 18px;
    margin: 10px 0;
  }
  
  form {
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
  }
  
  form input, form textarea {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form button {
    background-color: #8B4513;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
  }
  
  .social-links a {
    margin: 0 10px;
    color: white;
  }
  
  /* Responsive Design for Mobile */
  @media (max-width: 768px) {
    header {
      padding: 10px;
    }
  
    .hamburger {
      display: flex;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #f4f4f4;
      position: absolute;
      top: 80px;
      left: 0;
      text-align: center;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 10px 0;
    }
  
    .hero-content h2 {
      font-size: 36px;
    }
  
    .hero-content p {
      font-size: 18px;
    }
  
    .suite-grid, .gallery {
      flex-direction: column;
    }
  
    .suite, .gallery img {
      width: 100%;
    }
  
    .contact form {
      width: 90%;
    }
  }