/* ========== GLOBAL ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Georgia', serif; background-color: #faf9f5; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { width: 100%; border-radius: 8px; }

/* HEADER */
.header {
  background-color: #1a1a40;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img { height: 60px; }

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  color: #f5d36e;
  font-weight: 600;
  transition: 0.3s;
}

.navbar a:hover { color: #fff; }

.lang-switch button {
  background: transparent;
  border: 1px solid #f5d36e;
  color: #f5d36e;
  margin-left: 8px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
}
.lang-switch button:hover { background: #f5d36e; color: #1a1a40; }

/* HERO */
.hero {
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 64, 0.65);
}
.overlay {
  position: relative;
  color: white;
  text-align: center;
  z-index: 1;
}
.hero h1 {
  font-size: 2.8rem;
  text-transform: uppercase;
}
.hero h1 span { color: #f5d36e; font-size: 3rem; }
.hero p { margin: 20px auto; max-width: 600px; }
.btn {
  background: #f5d36e;
  color: #1a1a40;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s;
}
.btn:hover { background: #fff; }

/* SECTIONS */
section { padding: 80px 10%; text-align: center; }
h2 {
  color: #1a1a40;
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}
h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #f5d36e;
  display: block;
  margin: 15px auto;
  border-radius: 3px;
}

/* ROOMS */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 25px;
}

/* FORMS */
.booking-form, .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 450px;
  margin: 0 auto;
}
.booking-form input, .contact-form input, .contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.booking-form button, .contact-form button {
  margin-top: 10px;
}

/* CONTACT */
.contact {
  background: #1a1a40;
  color: white;
}
.contact p { line-height: 1.8; }

/* FOOTER */
.footer {
  background: #0f0f2d;
  color: #ccc;
  text-align: center;
  padding: 25px;
}
.footer a { color: #f5d36e; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 10px;
  }
  .hero h1 { font-size: 2rem; }
  .hero h1 span { font-size: 2.3rem; }
  section { padding: 60px 6%; }
}
