/* ===== Header Styles (header.css) ===== */
:root {
  --saffron: #C77B30;
  --deep: #2E2E1F;
  --muted: #333333;
  --nav-bg: rgba(255, 255, 255, 0.95);
}

/* Reset basics for header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: var(--nav-bg);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* inner layout */
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  justify-content: space-between;
}

/* Logo */
.brand-logo {
  height: 56px;
  display: block;
}

/* NAV */
.header-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: var(--deep);
  font-weight: 500;
  padding: 8px 6px;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--saffron);
  text-decoration: underline;
}

/* Mobile menu button only visible on small screens */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--deep);
  margin-right: 8px;
}

/* Right CTAs */
.header-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.book-btn {
  background: var(--saffron);
  color: #fff;
  padding: 10px 16px;
  border-radius: 24px;
  /* 24px as requested */
  font-weight: 600;
  border: 0;
  font-family: 'Lato', sans-serif;
  box-shadow: 0 6px 18px rgba(199, 123, 48, 0.16);
}

.book-btn:hover {
  background: #b06926;
  transform: translateY(-2px);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--saffron);
  border: 2px solid var(--saffron);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 18px;
}

.whatsapp-btn:hover {
  background: var(--saffron);
  color: #fff;
}

/* ========= Floating Contact Buttons ========= */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-buttons a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp */
.whatsapp-float {
  background-color: #25D366;
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}

/* Call Button */
.call-float {
  background-color: #198754;
  box-shadow: 0 4px 8px rgba(25, 135, 84, 0.4);
}

.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


/* Responsive */
@media (max-width: 920px) {
  .nav-list {
    gap: 14px;
  }

  .header-inner {
    padding: 12px 14px;
  }
}

@media (max-width: 780px) {
  .header-inner {
    gap: 8px;
  }

  .brand-logo {
    height: 48px;
  }

  .mobile-menu-btn {
    display: inline-block;
  }

  .nav-list {
    position: absolute;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nav-bg);
    border-radius: 10px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    gap: 0;
    width: 90%;
    max-width: 420px;
    overflow: hidden;
    display: none;
    /* toggled by JS */
  }

  .nav-list.open {
    display: flex;
  }

  .nav-link {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    text-align: center;
  }

  .header-right {
    gap: 8px;
  }

  .book-btn {
    padding: 8px 12px;
    font-size: 15px;
  }
}