/* ===== Base ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #f39c12;
}

h1 {
  font-size: 20px;
  color: #f39c12;
}
h2 {
  text-align: center;
  color: #f39c12;
}

/* ===== Header / Navbar ===== */
header {
  background: #222;
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  font-weight: 500;
}

.nav-links a:hover {
  color: #f39c12;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  animation: changeBg 120s infinite ease-in-out;
  -webkit-animation: changeBg 120s infinite ease-in-out;
}

@keyframes changeBg {
  0% { background-image: url("../images/landing.jpg"); }
  50% { background-image: url("../images/landing2.jpg"); }
  100% { background-image: url("../images/landing4.jpg"); }
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  padding: 0 20px;
}
.hero .btn {
  background: #f39c12;
  padding: 12px 20px;
  color: white;
  border-radius: 8px;
  transition: background 0.3s;
  margin-top: 15px;
}
.hero .btn:hover {
  background: #f0eeec;
  color: #222;
}

/* ===== Gallery ===== */
#gallery {
  padding: 50px 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.card {
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  text-align: center;
}
.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.card:hover {
  transform: scale(1.05);
}

/* ===== Booking Section ===== */
#booking {
  padding: 40px 20px;
  background: #f9f9f9;
}
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
input,
select,
button {
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
button.btn {
  background: #f39c12;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
button.btn:hover {
  background: #222;
  color: #f0eeec;
}

.call-button {
  display: inline-block;
  background: #f39c12;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.02rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding-left: 40%;
}

.call-button:hover {
  color: #222;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}


/* ===== Footer ===== */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    width: 100%;
    background: #222;
    text-align: center;
    font-size: 1.05rem;
  }
  .nav-links.show {
    display: block;
  }
  .nav-links ul {
    flex-direction: column;
    padding: 1rem 0;
    gap: 12px;
  }
  .hero {
    height: 65vh;
    padding: 2rem 1rem;
  }
  .hero h2 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
}

@media (max-width: 480px) {
  header h1 { font-size: 1.2rem; }
  .hero h2 { font-size: 1.5rem; }
  .gallery-grid { gap: 15px; }
  form { padding: 0 10px; }
  footer { font-size: 0.9rem; padding: 15px; }
  
}
