* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Garamond, serif;
  background: #f4f1ed;
  color: #222;
}

/* ===== NAVBAR ===== */
header {
  background: #1f3b2e;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  background: #1f3b2e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a {
  display: block;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  color: #c59b6a;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.language-switcher {
  display: flex;
  gap: 12px;
  border-left: 1px solid #c59b6a;
  padding-left: 20px;
}

.lang-btn {
  background: transparent;
  color: #c59b6a;
  border: 1px solid #c59b6a;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.lang-btn:hover,
.lang-btn.active {
  background: #c59b6a;
  color: #1f3b2e;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;

  background-color: #1f3b2e;
  border: 2px solid #c59b6a;
  padding: 8px;
  border-radius: 8px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  box-shadow: none;
  outline: none;

  -webkit-tap-highlight-color: transparent;
}


.hamburger:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(197,155,106,0.12);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #c59b6a;
  border: none;
  outline-color: #1f3b2e;
  transition: all 0.3s ease;
}

/* Keep same background when active */
.hamburger.active {
  border: none;
  background: #1f3b2e;
}

.hamburger::before,
.hamburger::after {
  content: none;
  background: #1f3b2e;
}



/* ===== CONTACT PAGE ===== */
.contact-container {
  max-width: 1200px;
  margin: 70px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h1 {
  font-size: 42px;
  color: #1f3b2e;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.contact-info .label {
  font-weight: bold;
  color: #1f3b2e;
}

.contact-info .highlight {
  font-size: 22px;
  font-weight: bold;
  color: #c59b6a;
}

/* ===== MAP ===== */
.map-box {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== MENU ===== */
.menu-container {
  max-width: 1100px;
  margin: 70px auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 80px;
}

.section h2 {
  font-size: 36px;
  color: #1f3b2e;
  margin-bottom: 30px;
  border-bottom: 2px solid #c59b6a;
  display: inline-block;
  padding-bottom: 6px;
}

/* MENU ITEM */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  padding: 10px 0;
  border-bottom: 1px dashed #cfc6bc;
}

.menu-item span:last-child {
  font-weight: bold;
  color: #1f3b2e;
}

/* ===== FOOTER ===== */
footer {
  background: #1f3b2e;
  color: #f4f1ed;
  text-align: center;
  padding: 22px;
  margin-top: 80px;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 15px;
  }

  .nav-center {
    display: none;
  }

  .nav-center.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1f3b2e;
    padding: 20px;
    gap: 20px;
    border-top: 1px solid #c59b6a;
    -webkit-tap-highlight-color: transparent; /* remove white tap highlight on mobile */
  }

  /* Ensure links and buttons in the mobile dropdown use the dark theme
     and don't show a white background when tapped */
  .nav-center.active a,
  .nav-center.active .lang-btn {
    background: transparent;
    color: #c59b6a;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-center.active a:active,
  .nav-center.active a:focus,
  .nav-center.active .lang-btn:active,
  .nav-center.active .lang-btn:focus {
    background: transparent;
    color: #ffffff;
    outline: none;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links a {
    font-size: 16px;
  }

  .language-switcher {
    border-left: none;
    padding-left: 0;
    justify-content: center;
    border-top: 1px solid #c59b6a;
    padding-top: 20px;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .contact-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .contact-info h1 {
    font-size: 32px;
  }

  .contact-info p {
    font-size: 16px;
  }

  .map-box {
    height: 300px;
  }

  .section h2 {
    font-size: 28px;
  }

  .menu-item {
    font-size: 16px;
  }

  .menu-item span:last-child {
    margin-left: 10px;
  }

  .logo img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 10px;
  }

  .logo img {
    height: 36px;
  }

  .contact-container {
    padding: 0 15px;
    gap: 30px;
  }

  .contact-info h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .contact-info p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .map-box {
    height: 250px;
  }

  .section {
    margin-bottom: 50px;
  }

  .section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .menu-item {
    font-size: 14px;
    padding: 8px 0;
  }

  .language-switcher {
    gap: 8px;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
