
:root {
  --yellow: #fff176;
  --dark: #333;
  --white: #fff;
}
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
/*  background: var(--yellow);*/
	background-image: linear-gradient(to bottom, #feee6a, white); /* #feee6a */
        min-height: 100vh; 
        margin: 0; 

/*  color: var(--dark);*/
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--yellow);
  position: relative;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  font-weight: bold;
  color: var(--dark);
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background: var(--dark);
  margin: 4px 0;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #796fd9;/*222*/
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 99;
}
.mobile-menu a {
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  border-bottom: 1px solid #444;
}
.mobile-menu a:hover {
  background: #111;
}
.language-switch {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}
.language-switch button {
  padding: 8px 14px;
  background: transparent;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}
.hidden { display: none; }
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu.show {
    display: flex;
  }
}
