/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  color: #333;
  line-height: 1.5;
}
h1, h2, h3 {
  margin-bottom: 8px;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
header {
  background: #111;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
}
.logo { font-size: 1.5rem; font-weight: bold; }
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li { margin-left: 20px; }
.nav-links a {
  color: #fff;
  transition: 0.3s;
}
.nav-links a:hover { color: #ffcc66; }

/* Hero */
.hero {
  background: url("ayo.webp") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.hero-text h2 { font-size: 3rem; margin-bottom: 15px; }
.btn {
  background: #808080;
  color: #111;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
}
.btn:hover { background: #ffaa00; }

/* Sections */
.section {
  padding: 80px 50px;
  text-align: center;
}
.section.light { background: #f8f8f8; }

/* Rooms */
.room-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.room-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
}
.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.room-card h3 { margin: 15px 0 5px; }

/* Amenities */
.amenities-list {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
}

/* Contact */
form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
input, textarea, button {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  background: #111;
  color: #fff;
  cursor: pointer;
}
button:hover { background: #333; }

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #fff;
}

/* Booking Form */
.booking-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.booking-form label {
  margin: 10px 0 5px;
  font-weight: 500;
}
.booking-form input,
.booking-form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.booking-form button {
  margin-top: 20px;
  padding: 12px;
  background: #ffcc66;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 5px;
}
.booking-form button:hover {
  background: #ffaa00;
}
.room-gallery {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
  align-items: start;
  max-width: 1500px;
  height: 4
}

.big-img {
  width: 450%;
  max-width: 450px;
  grid-row: 1 / span 2;
  grid-column: 1 / span 2;
  object-fit: cover;
}

.side-images {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
}

.side-images img {
  width: 100%;
  max-width: 300px;
  height: 210px;
  object-fit: cover;
  max-width: 600px;
}

.small-img:nth-child(2)
{ grid-row: 1; grid-column: 2; }

.small-img:nth-child(3)
{ grid-row: 1; grid-column: 3; }

.small-img:nth-child(4)
{ grid-row: 2; grid-column: 2; }

.small-img:nth-child(5)
{ grid-row: 2; grid-column: 3; }

.small-img {
  display: flex;
  width: 500%;
  max-width: 450px;
  height: 210px;
  object-fit: cover;
  gap: 20px;
}