@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&family=Pacifico&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  background-color: #fefaf6;
  color: #333;
}

header {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  font-size: 2.2rem;
  color: #5d3a00;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  header {
    font-size: 1.8rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  header {
    font-size: 1.5rem;
    padding: 1.2rem;
  }
}


/* Navigation Links */
nav {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #5d3a00;
  margin: 0 20px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

/* Add hover underline animation */
nav a {
  position: relative;
  text-decoration: none;
  color: #5d3a00;
  margin: 0 20px;
  font-weight: bold;
  font-size: 1.25rem; /* increased from 1.1rem */
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #8b5e3c;
  transition: width 0.3s ease-in-out;
}

nav a:hover {
  color: #8b5e3c;
}

nav a:hover::after {
  width: 100%;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  align-items: center;
}

.language-switcher form {
  display: flex;
  align-items: center;
}

.language-switcher select {
  padding: 5px 10px;
  font-size: 1rem;
  border: 2px solid #d3a588;
  border-radius: 12px;
  background-color: #fdf6ec;
  color: #5d3a00;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  cursor: pointer;
  margin-top: 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: border-color 0.3s ease;
}

.language-switcher select:focus {
  outline: none;
  border-color: #8b5e3c;
}

.language-switcher select:hover {
  border-color: #8b5e3c;
}


/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  header {
    font-size: 1.6rem;
    padding: 1rem;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
  }

  nav a {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  header {
    font-size: 1.4rem;
  }

  nav a {
    font-size: 0.95rem;
  }
}

  