/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
  }
  
  /* Navbar Styles */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f4ea; /* Navbar background color */
    padding: 15px 20px; /* Padding for the navbar */
    color: black; /* Navbar text color */
    transition: top 0.3s ease-in-out;
    position: fixed; /* Fix the navbar to make it scrollable */
    width: 100%;
    top: 0; /* Ensure the navbar starts at the top */
    z-index: 1000; /* Place it above other content */
  }
  
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo-image {
    width: 120px; /* Smaller logo size */
    height: auto;
    margin-right: 8px;
  }
  
  .nav-links {
    list-style-type: none;
    display: flex;
    gap: 40px; /* Reduced gap between links */
    margin-right: 50px;
    padding: 0;
  }
  
  .nav-links li {
    list-style: none;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #000000; /* Changed color for better visibility */
    font-weight: normal;
    font-size: 16px;
    padding: 5px;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #FFD700; /* Subtle hover effect */
  }
  .hidden-nav {
    top: -100px; /* Adjust this value to hide the header completely */
}
  /* Header Styling */
  header {
    color: #000000;
    padding: 1em;
    text-align: center;
    background-color: #f7f7f7;
    margin-bottom: 2em;
  }
  
  /* Main Section Styles */
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
  }
  
  /* Description Section */
  .description {
    background-color: #f7f7f7;
    padding: 1em;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%; /* Responsive width */
    margin-bottom: 2em; /* Spacing between sections */
  }
  
  .description h2 {
    margin-top: 0;
  }
  
  /* Gallery Section */
  .gallery {
    margin-top: 2em;
    width: 80%; /* Responsive width */
  }
  
  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery-container img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    margin: 1em;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Footer Styles */
  footer {
    background-color: #f9f4ea;
    color: #000000;
    padding: 1em;
    text-align: center;
    clear: both;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .description, .gallery {
      width: 90%; /* More width on smaller screens */
    }
  
    .nav-links {
      gap: 20px; /* Reduced gap on smaller screens */
    }
  }
  
  @media (max-width: 480px) {
    nav {
      flex-direction: column; /* Stack logo and nav links vertically */
    }
  
    .nav-links {
      margin-top: 10px;
      gap: 15px;
    }
  }
  .book-now {
    padding: 10px 20px;
    background-color: #3498db; /* Button background color */
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px; /* Add some space above the button */
    transition: background-color 0.3s ease;
}

.book-now:hover {
    background-color: #2980b9; /* Button hover color */
}

  