body {
  font-family: 'Inter', sans-serif;
  color: #162d4c;
  margin: 0;
  padding: 0;
}

/* ===== HEADER ===== */
.main-header {
  background: #fff;
  /* position: sticky; */
  top: 0;
  z-index: 999;
  padding-top: 8px;
  padding-bottom: 8px;
}

.site-logo {
  height: 200px;
  width: auto;
  object-fit: contain;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: #162d4c;
}

/* ===== NAVIGATION ===== */
.text-gold {
  color: #e9c46a;
}

.nav-link {
  color: #162d4c;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #e9c46a;
  border-bottom: 2px solid #e9c46a;
}

.btn-order-now {
  background-color: #e9c46a;
  color: #162d4c;
  font-weight: 600;
  border-radius: 50px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.btn-order-now:hover,
.btn-order-now.active {
  background-color: #f4a261;
  color: #fff;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #162d4c;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #162d4c;
  padding: 20px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  color: #fff;
  text-decoration: none;
  margin: 10px 0;
  font-weight: 600;
}

.mobile-link.order {
  background-color: #e9c46a;
  color: #162d4c;
  padding: 10px;
  border-radius: 25px;
  text-align: center;
}

.mobile-link.active {
  color: #e9c46a;
}

/* ===== MAIN CONTENT ===== */
.site-main {
  min-height: calc(100vh - 300px);
  margin-bottom: 0;
  padding-bottom: 0;
}

/* ===== FOOTER ===== */
.main-footer {
  background: #162d4c;
  margin-top: 0 !important;
}

.footer-links a {
  color: #f8f9fa;
  text-decoration: none;
}

.footer-links a:hover {
  color: #e9c46a;
}
