/* Brand Logo */
.brand-logo {
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo img{
  object-fit: cover;
  width: 95%;
  height: 95%;
  padding: 5px;
}

/* Brand Text */
.brand-text h1 {
  font-size: 1.00rem;
  font-weight: 600;
  background: linear-gradient(#eac991,#CEAA6C);
  background-clip:text;
  color: transparent;
}

.brand-text p {
  font-size: 0.7rem;
  color: var(--color-muted);
}

#navContainer{
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
/* Navigation Links */
.nav-links a:not(.btn-book) {
  display: inline-block;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark);
 
}

.nav-links a:not(.btn-book):active{
  color: #a88d5d;
}

.btnEffect{
  transition: all 0.1s ease-in;
}

/* Buttons */
.btn {
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: 500;
  display: inline-block;
  cursor: pointer;
}
/* Booking Button */
.btn-book{
  background:var(--btn-gradient);
  color: var(--color-light);
  padding: 0.3rem 0.6rem;
  font-size: 1rem;
}
.floatBtn{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background:linear-gradient(90deg,#b57d1d,#CEAA6C);
  width: 60px;
  height: 60px;
  text-wrap: word-break;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  font-size: 34px;
}


@media (max-width: 960px) {
  .nav-toggle {
    margin-left: auto;
  }

  .brand {
    gap: 0.5rem;
  }

  .brand-text h1 {
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .brand-text p {
    font-size: 0.65rem;
  }

  .nav-links {
    align-items: center;
    z-index: 9999;
  }

  .nav-links a {
    font-size: 1rem;
  }

  .site-header {
    /* position: relative; */
    z-index: 9999;
  }
}
 @media(hover: hover) {
    .btnEffect:hover{
      transform: translateY(-2px);
    }
    .btn-book:hover{
      background:linear-gradient(90deg,#dcb36c,#c9a664);
    }
    .nav-links a:not(.btn-book):hover{
      color: #CEAA6C; 
    }
    .floatBtn:hover{
      background:linear-gradient(270deg,#b57d1d,#CEAA6C);
    }
}
.btn-book:active{
  background:linear-gradient(90deg,#9f8353,#886c39);
}
.btnEffect:active{
   transform: scale(0.98);
   transform: translateY(2px);
}

.section-top-divider {
  margin: 3.7rem auto 2rem auto;
  max-width: 5rem;
  height: 0.3rem;
  border-radius: 10%;
  /* background-color: var(--color-primary);
   */
  background: var(--accent-color);
  border: none;
  display: flex;
  justify-content: center;
}


.section-header {
  text-align: center;
  margin-bottom: 42px;
  font-weight: 100;
  font-family: var(--font-primary);
  padding: 0 24px;
}

.section-header h2{
  font-family: var(--font-footer-heading);
  font-size: 60px;
  font-weight: 100;
}

.section-header p{
  font-family: var(--font-primary);
  max-width: 620px;
  color: #666;
}


/* ============================================================
   UNIFIED FILTER NAVBAR (Capsule Component)
   Desktop: Gallery Look | Mobile: Packages Look
============================================================ */

/* 1. The Container (Capsule) */
.filter-capsule {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f0e6;
  padding: 6px;
  border-radius: 50px;
  width: fit-content;
  max-width: calc(100% - 2rem);
  margin: 0 auto 40px auto;
  gap: 4px;
  overflow: hidden;
}

/* 2. The Buttons (Filter Items) */
.filter-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  background-color: transparent;
  font-family: var(--font-primary);
  color: #002244;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;

  /* DESKTOP DEFAULTS (Gallery Style) */
  padding: 8px clamp(12px, 3vw, 24px);
  font-size: 0.9rem; /* Force the slightly larger Gallery look */
  font-weight: 415;
}

/* 3. Hover & Active States (Common to both) */
.filter-item:hover {
  background-color: #e3d4bd;
  border-radius: 50px;
}

.filter-item.active {
  background-color: #c29b62;
  color: #ffffff;
  border-radius: 50px;
}

/* 4. Icons (Inside the buttons) */
.filter-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.filter-icon svg {
  stroke: #d4af37;
  transition: stroke 0.3s ease;
  /* Desktop Icon Size */
  width: 18px; 
  height: 18px;
}

.filter-item.active .filter-icon svg {
  stroke: white;
}

/* 5. MOBILE VIEWPORT (Packages Style) 
   Transition at 768px for standard mobile/tablet break
============================================================ */
@media (max-width: 768px) {
  .filter-capsule {
    padding: 4px;      /* Tighter container buffer */
    gap: 2px;          /* Minimal space between buttons */
    margin-bottom: 30px;
  }

  .filter-item {
    /* Reverting to the exact "Packages" sizing */
    padding: 6px 12px; 
    font-size: 0.8rem; 
    font-weight: 500;
    gap: 4px;          /* Tighter icon-to-text gap */
  }

  .filter-icon svg {
    /* Smaller icons to maintain the compact look */
    width: 16px;
    height: 16px;
  }
}

/* Extra safety for very small devices (iPhone SE, etc.) */
@media (max-width: 360px) {
  .filter-item {
    padding: 6px 8px;
    font-size: 0.75rem;
  }
  
  .filter-icon svg {
    width: 14px;
    height: 14px;
  }
}