body {
    margin: 0;
    min-height: 100vh;

    font-family: "Georgia", serif;
    color: #2f3b2f;

    background-image: url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Semi-transparent light green navigation */
.navbar {
  background-color: rgba(180, 222, 180, 0.5); /* Light green with 70% opacity */
  padding: 1rem 3rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
}

/* Navigation container */
.nav-container {
  display: flex;
  justify-content: center; /* Center the nav-links */
  align-items: center;
  width: 100%;
  position: relative; /* Needed for absolute positioning of lang-toggle */
}

/* Main navigation links */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  position: absolute; /* Position absolutely within nav-container */
  left: 50%;
  transform: translateX(-50%); /* Center the links */
}

.nav-links a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

/* Language toggle */
.lang-toggle {
  position: absolute;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Style for language toggle links */
.lang-toggle a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

/* Active language highlight (optional) */
.lang-toggle a.active {
  text-decoration: underline;
}

/* Separator between language links */
.lang-toggle span {
  color: #333;
  margin: 0 0.5rem;
}

/* Semi-transparent white content box */
.content {
  padding-top: 4rem; /* Space for fixed navbar */
}

.content-box {
  background-color: rgba(255, 255, 255, 0.7);
  margin: 2rem auto;
  padding: 2rem;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
    .page {
        flex-direction: column;
        padding: 1rem;
    }
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    position: static;
    transform: none;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .lang-toggle {
    position: static;
    align-self: flex-end;
    right: 1rem;
  }
  
  .navbar {
    padding: 1rem;
  }

}
