/* Reset & base typography */
html {
  font-size: 18px; /* lebih besar default */
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  font-size: 1rem; /* mengikuti html */
  color: #222;
  line-height: 1.6;
  background: #fefefe;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em 3em; /* lebih besar */
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Logo */
.logo {
  font-weight: bold;
  font-size: 1.4em; /* lebih besar */
  color: #000;
}

/* Menu container */
.menu {
  display: flex;
  align-items: center;
  gap: 2em; /* jarak diperlebar */
}

/* Link & Button uniform style */
.menu-btn,
.menu a {
  font-size: 1.1em; /* lebih besar */
  font-weight: 500;
  color: #333;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: color 0.2s ease;
}

.menu-btn:hover,
.menu a:hover {
  color: #ff6b00;
}

/* Right section */
.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5em;
}

/* Search box */
.search {
  padding: 0.6em 1.2em;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 1.05em;
  outline: none;
  transition: all 0.2s ease;
}

.search:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

/* Book button */
.btn-book {
  background-color: #ff6b00;
  border: none;
  color: white;
  padding: 0.6em 1.4em;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1.05em;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-book:hover {
  background-color: darkorange;
}
