/* ========== BASE ========== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* ========== GLOBAL CONTAINER ========== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== TOP BAR ========== */
.top-bar-container {
  background-color: #f9f9f9;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
}

.contact-info {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #333;
}

.contact-info i {
  margin-right: 6px;
}

/* ========== MAIN HEADER ========== */
.header-container {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #c5a365;
}

/* Header Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.book-btn {
  padding: 10px 20px;
  background-color: #c5a365;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.book-btn:hover {
  background-color: #b0894c;
}

.mobile-menu-toggle {
  display: none;
  font-size: 22px;
  background: #f5c16c;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: white;
  padding: 20px;
  z-index: 9999;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.mobile-nav a:hover {
  color: #c5a365;
}

.mobile-nav .close-btn {
  background: none;
  border: none;
  font-size: 24px;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .top-bar-container {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .book-btn.desktop-only {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-block;
  }

  .main-header {
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
  }
}
