/* --- General Header --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1b1b1b;
  color: #f2d3a3; /* caramel/light accents */
  position: relative;
}

header .logo a {
  color: #f2d3a3;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
}

/* --- Menu --- */
nav ul.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul.menu li a {
  color: #f2d3a3;
  text-decoration: none;
  font-weight: 500;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #f2d3a3;
  border-radius: 2px;
}

/* --- Responsive --- */
/* Change this in style.css */
@media (max-width: 768px) {
  nav.mobile-nav {
    display: none;
    flex-direction: column;
    background: #1b1b1b;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    padding: 1rem;
  }
  nav.mobile-nav.show {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}

/* === Language Select Overlay === */
#langOverlay {
    position: fixed;
    inset: 0;
    background-color: rgba(18, 18, 18, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#langOverlay.hidden {
    display: none;
}

#langBox {
    background-color: #1b1b1b;
    border: 1px solid #e0b184;
    border-radius: 12px;
    padding: 2.5rem 3rem;
    text-align: center;
    max-width: 420px;
    width: 90%;
}

#langBox h2 {
    color: #e0b184;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

#langBox p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

#langButtons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.lang-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: 2px solid #e0b184;
    border-radius: 10px;
    color: #e0b184;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
    flex: 1;
}

.lang-btn span:first-child {
    font-size: 2.5rem;
}

.lang-btn:hover {
    background-color: #e0b184;
    color: #121212;
    transform: translateY(-3px);
}