/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===========================
   DROPDOWN MENU STYLES
   =========================== */
.nav-links .dropdown {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-links .dropbtn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 0;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}

/* Dropdown default hidden */
.nav-links .dropdown-content {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  min-width: 200px;
  border-radius: 5px;
  z-index: 500;
  padding: 5px 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  background: linear-gradient(180deg, #000 0%, var(--brand-brown) 100%);
  transition: all 0.3s ease;
}

.nav-links .dropdown-content li {
  list-style: none;
}

.nav-links .dropdown-content li a {
  display: block;
  padding: 10px 15px;
  color: #fff; /* White text */
  text-decoration: none;
  font-weight: 500;
}

/* Remove hover background effect */
.nav-links .dropdown-content li a:hover {
  background: none; /* No hover background */
  color: #fff;      /* Keep text white */
}

/* Show dropdown when parent has .open */
.nav-links .dropdown.open .dropdown-content {
  display: block;
}


/* ================= BRAND COLORS ================= */
:root {
  --brand-blue: #1F6F8B;
  --brand-brown: #C2A26A;
  --brand-blue-dark: #0F3F4E;
  --light-bg: #F5F7F8;
}

/* ================= BODY ================= */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--light-bg);
  color: #222;
}

/* ================= NAVBAR ================= */
.lux-navbar {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-dark));
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 42px;
}

.nav-logo span {
  color: var(--brand-brown);
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-brown);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--brand-brown);
}

.nav-btn {
  background: linear-gradient(135deg, var(--brand-brown), #e6d3a3);
  color: var(--brand-blue-dark);
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--brand-brown);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: var(--brand-blue);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 25px 0;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}

/* ================= BOOKING SECTION WITH BACKGROUND ================= */
.booking {
  position: relative;
  padding: 130px 10% 70px;
  background: url('booking-bg.jpg') no-repeat center center;
  background-size: cover;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  color: #fff;
}

.booking::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay for readability */
  z-index: 0;
}

.booking h2,
.booking p,
.lux-form input,
.lux-form select,
.lux-form textarea,
.lux-form button {
  position: relative;
  z-index: 1;
}

.booking h2 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 2.2rem;
}

.booking p {
  color: #eee;
}

/* ================= FORM ================= */
.lux-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lux-form input,
.lux-form select,
.lux-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 16px;
  font-size: 0.95rem;
  border-radius: 4px;
  outline: none;
  color: #fff;
}

.lux-form textarea {
  min-height: 140px;
  resize: none;
}

/* PLACEHOLDERS */
.lux-form input::placeholder,
.lux-form textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

/* SELECT */
.lux-form select {
  cursor: pointer;
}

/* SEND BUTTON */
.lux-form button {
  background: rgba(194, 162, 106, 0.8);
  border: none;
  color: #0F3F4E;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}



.lux-form button:hover {
  background: #C2A26A;
  color: #fff;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking {
    padding: 120px 5% 50px;
  }
}

/* ================= FIX SELECT DROPDOWN ================= */

/* Make select field background match inputs */
.lux-form select {
  background: rgba(255, 255, 255, 0.1); /* semi-transparent to match other inputs */
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; /* text color inside select */
  appearance: none; /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 14px 16px;
  border-radius: 4px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M0%200l5%207%205-7H0z%22%20fill%3D%22white%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 7px;
}

/* Dropdown options */
.lux-form select option {
  background-color: rgba(0,0,0,0.8); /* dark background for options */
  color: #fff; /* white text */
}

/* Placeholder option muted */
.lux-form select option:first-child {
  color: rgba(255,255,255,0.7);
}
