header{
     background-color: #ffffff;
    padding: 0px;
    text-align: center;
    image-rendering: auto;
    background-size: cover;
    
}

.header h1{
  margin: 0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

#img-tree{
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    display: flex;

}

body{
    background-color: rgba(38, 0, 255, 0.603);
    image-rendering: auto;
    background-size: cover;
    margin: 0;
  padding: 0;
  line-height: 1.2;
  font-family:serif;
}

section{
 border-radius: 8xp;
  margin: 1px 10px auto;
  border-radius: 10px;
  max-width: 1000px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  padding: 5px 200px;
}

section h1{
    text-align: center;
}

.menu {
  display: flex;
  list-style: none;
}
.menu-li {
  margin-left: 20px;
}
.menu-li a {
  color: rgba(216, 160, 17, 0.95);
  text-decoration: none;
}

nav {
  text-align: right;
  padding: 12px;
}

nav a {
  text-decoration: none;
  color: white;
  margin: 0 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: #86605a;
  text-decoration: underline;
}

#contact{
text-align: center;
}

form {
  max-width: 650px;
  margin: 24px auto;
}
form label {
  margin-bottom: 8px;
  font-weight: 600;
  display: block;
}
form input,
form textarea,
form button {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #ddd;
  font-size: 16px;
  border-radius: 8px;
}
form input:focus, form textarea:focus{
    border-color: #007bff;
outline:none;
}
form button{
    background-color: #0d4178;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
form button:hover{
    background-color: #007bff;
}
form button:active{
    background-color:black
}

#booking{
    text-align: center;
    color: #ffffff;
    font-size: 35px;
    font-weight: 900;
}
 #booking-section{
    background-color: rgba(160, 152, 152, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
}

#hotel-list {
  margin-top: 40px;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.hotel-card {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  background: #fff;
}

.hotel-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: #eee;
  border-radius: 8px;
}

