/* ===========================
   RESET
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===========================
   BRAND COLORS
   =========================== */
:root {
  --brand-blue: #1F6F8B;
  --brand-brown: #C2A26A;
  --brand-blue-dark: #0F3F4E;
  --light-bg: #F5F7F8;
}

html, body {
  height: 100%;
}

/* ===========================
   BODY
   =========================== */
body {
  font-family: 'Poppins', sans-serif;
    background: linear-gradient(rgba(31,111,139,0.7), rgba(15,63,78,0.7)), 
              url('whale.jpg') no-repeat center center/cover;
    color: #fff;
	  display: flex;
  flex-direction: column;
}

/* ===========================
   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 img {
  height: 45px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 5px 0;
  position: relative;
  font-weight: 500;
}

.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);
}

/* BOOK NOW BUTTON */
.nav-btn {
  background: linear-gradient(135deg, var(--brand-brown), #e6d3a3);
  color: var(--brand-blue-dark);
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
}

/* ===========================
   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;
}


/* ===========================
   MOBILE MENU
   =========================== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--brand-brown);
  cursor: pointer;
}
/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews-section {
  padding: 80px 25px;
   color: #fff;
  background: transparent;
  text-align: center;
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.reviews-section h2 {
  font-size: 2.5rem;
    color: #fff;
  margin-bottom: 10px;
}

.reviews-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #C2A26A;
  margin: 0 auto 40px auto;
  border-radius: 2px;
}

/* REVIEW SLIDER */
.reviews-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: auto;
}

/* INDIVIDUAL REVIEW */
.review {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  background: transparent;
}

.review.active {
  display: block;
  opacity: 1;
}

.review p {
  font-size: 1.05rem;
  margin-bottom: 20px;
   color: #fff;
  line-height: 1.6;
}

.review h4 {
  font-size: 1rem;
    color: #fff;
  font-weight: 600;
}

/* NAVIGATION BUTTONS */
.review-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30, 111, 139, 0.8);
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: background 0.3s;
}

.review-btn:hover {
  background: #C2A26A;
  color: #fff;
}

.review-btn.prev {
  left: -30px;
}

.review-btn.next {
  right: -30px;
}

/* DOTS NAVIGATION */
.review-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.review-dots .dot {
  height: 12px;
  width: 12px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.review-dots .dot.active {
  background: #C2A26A;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .review-btn.prev {
    left: -15px;
  }
  .review-btn.next {
    right: -15px;
  }
  .review p {
    font-size: 1rem;
  }
}


/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--brand-blue);
  color: #fff; /* changed to white */
  text-align: center;
  padding: 30px 15px;
  margin-top: auto;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    background: var(--brand-blue);
    width: 220px;
    padding: 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .review-btn.prev {
    left: 0;
  }

  .review-btn.next {
    right: 0;
  }
}
