/* ============================= */
/* ===== HEADER ================ */
/* ============================= */

.fixed-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#f3fdf6;
  z-index:1000;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.header-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  max-width:1200px;
  margin:auto;
}

.header-title{
  display:flex;
  align-items:center;
  gap:14px;
}

.header-title h2{
  margin:0;
  font-size:20px;
  color:#2e7d32;
}

/* ============================= */
/* ===== LANGUAGE SWITCHER ===== */
/* ============================= */

.languages{
  display:flex;
  gap:12px;
  align-items:center;
}

.languages a{
  text-decoration:none;
}

.languages img{
  cursor:pointer;
  border-radius:3px;
  transition:0.2s;
}

.languages img:hover{
  transform:scale(1.15);
}