/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #000000;
  color: #fff;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #1f1a1a;
  border-bottom: 1px solid #d4af37;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 2px;
}

.logo span {
  color: #fff;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}

nav a:hover {
  color: #d4af37;
}

.gold-btn {
  background: #d4af37;
  color: #000;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* slides */
.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 25s infinite;
}

/* slide timing */
.s1 { animation-delay: 0s;}
.s2 { animation-delay: 5s;}
.s3 { animation-delay: 10s;}
.s4 { animation-delay: 15s;}
.s5 { animation-delay: 20s;}

@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 5; }
  20% { opacity: 10; }
  30% { opacity: 15; }
  100% { opacity:20; }
}

/* overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.85)
  );
  z-index: 1;
}

/* hero text */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 54px;
  color: #d4af37;
  letter-spacing: 3px;
}

.hero-content h2 {
  font-size: 32px;
  margin: 15px 0;
}

.hero-content p {
  font-size: 18px;
  color: #f0e6c0;
  margin-bottom: 30px;
}

.hero-btn {
  background: #d4af37;
  color: #000;
  padding: 14px 32px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
}

.hero-btn:hover {
  background: #fff;
}

/* ===== HIGHLIGHTS ===== */
.highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 30px;
  background: #000000;
  border-top: 1px solid #d4af37;
}

.highlights div {
  color: #d4af37;
  font-weight: bold;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 25px;
  background: #000000;
  color: #d4af37;
  border-top: 1px solid #d4af37;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content h2 {
    font-size: 24px;
  }

  .highlights {
    flex-direction: column;
    gap: 15px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* ================= HEADER ================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-bottom: 1px solid gold;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: gold;
}

.logo span {
  color: #fff;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
}

nav a:hover {
  color: gold;
}

/* ================= PAGE ================= */
.page {
  padding: 60px;
}

.back-home {
  display: inline-block;
  margin-bottom: 20px;
  color: gold;
  text-decoration: none;
  font-size: 15px;
}

.back-home:hover {
  text-decoration: underline;
}

.page h2 {
  font-size: 36px;
  color: gold;
  margin-bottom: 40px;
}

/* ================= CARDS GRID ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* ================= CARD ================= */
.card {
  background: #000000;
  border: 1px solid gold;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card h3 {
  color: gold;
  margin-bottom: 10px;
  font-size: 20px;
}

.check {
  font-size: 14px;
  margin: 6px 0;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 25px;
  margin-top: 60px;
  color: gold;
  border-top: 1px solid gold;
  font-size: 14px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    margin-left: 15px;
  }

  .page {
    padding: 30px;
  }
}
.booking-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid gold;
  background: #000000;
  color: #fff;
}

.booking-form textarea {
  resize: none;
  height: 100px;
}

.gold-btn {
  background: gold;
  color: #000000;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
  text-align: center;
}

.gold-btn:hover {
  opacity: 0.9;
}

.or {
  text-align: center;
  margin: 20px 0;
  color: rgb(255, 217, 6);
}
.lang-switch button {
  background: transparent;
  border: 1px solid gold;
  color: gold;
  padding: 5px 10px;
  margin-left: 8px;
  cursor: pointer;
  border-radius: 4px;
}

.lang-switch button:hover {
  background: rgb(209, 186, 54);
  color: #000;
}

