/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  padding-top: 110px; /* To avoid overlap with top bar + header */
  background: #fff;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: #004c3f;
  color: #fff;
  padding: 8px 5%;
  font-size: 14px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1200;
  text-align: center;
}

.contact-info i {
  color: #ffdd57;
  margin-right: 6px;
}

/* ========== HEADER ========== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5%;
  background: #f9fdfb;
  position: fixed;
  top: 33px; /* Below top-bar */
  width: 100%;
  z-index: 1100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ========== LOGO ========== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 137px; /* increase size */
  height: auto; /* keep aspect ratio */
  max-height: 72px; /* prevents header from stretching too much */
}

.logo span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #004c3f;
}

/* ========== NAV LINKS ========== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #004c3f;
  font-weight: 600;
}

/* ========== BOOK NOW BUTTON ========== */
.book-btn {
  background: #004c3f;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #037c63;
}

/* ========== MENU TOGGLE (HAMBURGER) ========== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #004c3f;
  z-index: 1300;
}

/* ========== RESPONSIVE DESIGN ========== */
@media screen and (max-width: 900px) {

  /* Hide desktop layout */
  .nav-links {
    position: fixed;
    top: 80px; /* Below header */
    left: 0;
    width: 100%;
    height: 0;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: #f9fdfb;
    transition: height 0.3s ease-in-out;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  }

  /* Show menu when active */
  .nav-links.active {
    height: 350px; /* Adjust menu height for all links */
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
  }

  /* Book Now inside menu */
  .book-btn {
    display: none;
  }

  .book-btn.active {
    display: block;
    margin: 15px auto;
    text-align: center;
    background: #004c3f;
    color: #fff;
    width: 80%;
    padding: 12px;
    border-radius: 6px;
  }

  /* Hamburger visible on mobile */
  .menu-toggle {
    display: block;
  }

  /* Adjust logo */
  .logo img {
    width: 120px; /* smaller on mobile */
    height: auto;
    max-height: 50px;
  }

  .logo span {
    font-size: 1.3rem;
  }

  /* Top bar text smaller */
  .top-bar {
    font-size: 13px;
  }
}

/* ========== OPTIONAL HAMBURGER ANIMATION ========== */
@media screen and (max-width: 900px) {
  .menu-toggle i {
    transition: transform 0.3s ease;
  }

  .nav-links.active + .menu-toggle i {
    transform: rotate(90deg);
  }
}
