/* Reset some basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.btn {
  background-color: #adaba781;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #bd8b30;
}

/* Container utility */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}

.logo {
  width: 90%;
  margin-top: 1px
}
/* About section */
.about h2 {
  text-align: center;
  margin-bottom: 20px;
}
.about p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Gallery section */
.gallery h2 {
  text-align: center;
  margin-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services section */
.services h2 {
  text-align: center;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.service-list li {
  background-color: #f1f1f1;
  padding: 20px 30px;
  border-radius: 5px;
  font-size: 1.1rem;
}

/* Booking section */
.booking {
  background-color: #f8f8f8;
  text-align: center;
  padding: 60px 0;
}
.booking h2 {
  margin-bottom: 15px;
}
.booking p {
  margin-bottom: 30px;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 30px 0;
}
.footer a {
  color: #e63946;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}
