* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-around!important;
    align-items: center;
    background: #333;
    padding: 10px 20px;
    flex-wrap: wrap;
  }
  
  .logo img {
    height: 100px;
    padding-left: 10px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 15px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease-in-out;
  }
  
  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    width: 100%;
  }
  
  
  .reservation-btn {
    background-color: #111;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
  }
  
  .reservation-btn:hover {
    background-color: #555;
  }
  
  /* Toggle button hidden by default */
  .toggle-btn {
    display: none;
    font-size: 28px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .toggle-btn {
      display: block;
      /* order: -1; Move to the beginning in flexbox */
      margin-right: auto; /* Push it to the left */
      padding: 0 20px;
  }
  

  .navbar {
    flex-direction: row;
    flex-wrap: wrap;
  }
    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none; /* Hidden initially */
        background-color: #333;
        padding: 10px 0;
    }
  
    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }
  
    .nav-links.show {
        display: flex;
    }
  
    .reservation-btn {
        width: 100%;
        margin-top: 10px;
    }
  }


  /* Tablets and small laptops (768px to 1024px) */
@media (max-width: 1024px) {
    .logo img {
        height: 80px;
        padding-left: 10px;
    }
  
    .nav-links li {
        margin: 0 5px;
    }
  
    .hero-content h1 {
        font-size: 2rem;
    }
  
    .booking-form {
        width: 95%;
    }
  }
  
  /* Mobile devices (up to 767px) */
  @media (max-width: 767px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
  
    .logo {
        align-self: center;
    }
  
    .reservation-btn {
        align-self: flex-end;
        margin-top: 10px;
    }
  
    .nav-links {
        display: none; /* You can replace this with a hamburger menu later */
        flex-direction: column;
        width: 100%;
    }
  
    .hero-section {
        height: auto;
        padding: 50px 0;
    }
  
    .hero-content h1 {
        font-size: 1.8rem;
    }
  
    .booking-form {
        position: static;
        width: 90%;
    }
      .hero-content{
        top: -22px;
    }
  
    .form-group {
        width: 100%;
        margin: 10px 0;
    }
  }
  
  /* Very small devices (up to 480px) */
  @media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
  
    .reservation-btn {
        width: 100%;
        padding: 10px;
        font-size: 16px;
    }
  
    .book-btn {
        width: 100%;
        padding: 12px;
    }
  }
  



  /* footer */

  /* Footer styles */
.footer {
    background-color: #333;
    color: #eee;
    text-align: center;
    padding: 40px 20px 20px;
    margin-top: 60px;
  }
  
  .footer-top {
    margin-bottom: 20px;
  }
  
  .hotel-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .hotel-address {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    margin: 5px 0;
    font-size: 16px;
  }
  
  .social-icons {
    margin-top: 15px;
  }
  
  .social-icons a {
    display: inline-block;
    margin: 0 10px;
    background: #555;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
  }
  
  .social-icons a:hover {
    background: #3498db;
  }
  
  .footer-bottom {
    border-top: 1px solid #555;
    padding-top: 15px;
    font-size: 14px;
    margin-top: 20px;
  }
  
  /* Responsive Footer */
  @media (max-width: 600px) {
    .contact-info, .social-icons {
      flex-direction: column;
    }
  }