/* ======================
   NAVBAR
====================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
  max-width: var(--container);
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair", serif;
}

.logo-badge {
  background: var(--orange);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}


.logo-text {
  font-size: 18px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .navbar {
    padding: 14px 0;
  }

  .btn-primary {
    padding: 10px 16px;
    font-size: 13px;
  }
}
/* ======================
   HAMBURGER MENU
====================== */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    display: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-links a {
    padding: 16px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
  }

  .nav-links.active {
    display: flex;
  }
}
/* ======================
   DESKTOP vs MOBILE BOOK BUTTON
====================== */

/* Desktop default */
.desktop-book {
  display: inline-flex;
}

.btn-mobile-book {
  display: none;
}

/* ======================
   MOBILE NAVBAR BEHAVIOR
====================== */

@media (max-width: 768px) {
  /* Hide desktop Book Now */
  .desktop-book {
    display: none;
  }

  /* Show mobile icon-only button */
  .btn-mobile-book {
    display: flex;
    width: 44px;
    height: 44px;
    background: var(--orange);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(5, 5, 23, 0.25);
  }

  .btn-mobile-book img,
  .btn-mobile-book svg {
    width: 18px;
    height: 18px;
  }

  /* Ensure spacing between hamburger & call button */
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
}
/* FORCE HIDE DESKTOP BOOK BUTTON ON MOBILE */
@media (max-width: 768px) {
  header.navbar .desktop-book {
    display: none !important;
  }
}
/* Make mobile phone icon white */
.btn-mobile-book img,
.btn-mobile-book svg {
  filter: brightness(0) invert(1);
}
