body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
}

header {
  background-color: #000;
  color: white;
  padding: 20px;
  text-align: center;
}

nav {
  background-color: #f1c40f;
  display: flex;
  justify-content: center;
  padding: 15px 0;
  gap: 30px;
}

nav a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 80px 20px;
  font-size: 30px;
}

.content {
  text-align: center;
  padding: 40px 20px;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}
footer a {
  color: #f1c40f;
  text-decoration: none;
  font-weight: bold;
  margin: 0 8px;
}

footer a:hover {
  text-decoration: underline;
}
.gallery {
  display: grid;
  gap: 15px;
  max-width: 1000px;
  margin: 30px auto;
  padding: 10px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}
.booking {
    color: #CE1619;
    text-align: center;
}
