body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f4f4f4;
  color: #333;
}

.navbar {
  position: fixed;
  width: 100%;
  background-color: white;
  padding: 15px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Hamburger Menu Toggle */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #333;
  padding: 8px 15px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .navbar-center,
  .navbar-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    padding-top: 10px;
    background-color: white;
  }

  .navbar-center a,
  .navbar-right button {
    margin: 10px 20px;
  }

  #menu-toggle:checked + .hamburger + .navbar-center,
  #menu-toggle:checked + .hamburger + .navbar-center + .navbar-right {
    display: flex;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .login-btn a, .register-btn a {
    color: white;
    text-decoration: none;
  }

  .login-btn {
    background-color: #27ae60;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
  }

  .register-btn {
    background-color: #2ecc71;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    margin-left: 10px;
  }

  .navbar-right {
    margin-top: 10px;
  }
}


.logo {
  font-size: 24px;
  font-weight: bold;
}

.navbar-center a, .navbar-right a {
  margin: 0 12px;
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.submit-btn {
  background-color: #27ae60;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.hero {
  height: 100vh;
  background-image: url("images/hotelproject.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
  background-color: #003696; /* solid deep blue */
  width: fit-content;
  margin-left: 35%;
}

.search-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.search-box input,
.search-box select {
  padding: 10px;
  width: 150px;
  border: none;
  border-radius: 5px;
}

.search-btn {
  background-color: #27ae60;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.features {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.features h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
  text-align: left;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 10px;
}

.card p {
  margin: 0 10px 15px 10px;
  color: #777;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f8f8f8;
  color: #888;
}
.footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px 20px 20px;
  font-size: 15px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 200px;
  margin: 10px 20px;
}

.footer-section h3, .footer-section h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-section p, .footer-section li {
  margin: 6px 0;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #27ae60;
}

.social-icons a {
  color: #eee;
  font-size: 18px;
  margin-right: 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #27ae60;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #444;
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}











/* === Responsive Navbar Enhancements === */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #27ae60;
  padding: 10px;
  margin-left: auto;
  margin-right: 10px;
}

/* Button Enhancements */
.login-btn, .register-btn {
  font-weight: 600;
  padding: 8px 18px;
  border: none;
  border-radius: 25px;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.login-btn {
  background: transparent;
  border: 2px solid #27ae60;
  color: #27ae60;
}

.login-btn:hover {
  background-color: #27ae60;
  color: white;
}

.register-btn {
  background: linear-gradient(to right, #27ae60, #2ecc71);
  color: white;
}

.register-btn:hover {
  background: linear-gradient(to right, #2ecc71, #27ae60);
}

/* Navbar Link Styling */
.navbar-center a {
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 5px;
  transition: 0.3s;
}

.navbar-center a:hover {
  background-color: #27ae60;
  color: white;
}

/* Responsive Nav Menu */
@media (max-width: 1014px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .navbar-center,
  .navbar-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    background-color: white;
    padding: 10px 0;
  }

  .navbar-center a,
  .navbar-right a {
    margin: 10px 20px;
    display: block;
  }

  #menu-toggle:checked + .hamburger + .navbar-center,
  #menu-toggle:checked + .hamburger + .navbar-center + .navbar-right {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* === Improved Search Box Styling === */
.search-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.search-box input,
.search-box select {
  padding: 12px;
  width: 170px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.9);
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  outline: none;
  transition: all 0.3s;
}

.search-box input:focus,
.search-box select:focus {
  box-shadow: 0 0 0 2px #27ae60;
}

.search-btn {
  background: linear-gradient(to right, #27ae60, #2ecc71);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.search-btn:hover {
  background: linear-gradient(to right, #2ecc71, #27ae60);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
