/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
  background: #87CEEB;
  height: 140px; 
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  height: 110px;
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  gap: 25px; /* Slightly increased gap to accommodate the bigger flag */
  align-items: center;
}

nav a {
  color: #1a1a1a;
  font-weight: 800;
  font-size: 1.05rem;
}

nav a:hover {
  color: white;
}

/* BIGGER FLAG SIZE */
.flag-wrapper {
  display: flex;
  align-items: center;
  margin-left: 10px; /* Gives the flag some breathing room from the links */
}

.flag-icon {
  height: 70px; /* Was 50px */
  width: 110px;  /* Was 80px */
  object-fit: cover;
  border: 4px solid white; /* Thicker border for better visibility */
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Adds a little depth */
}