body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background: black;
  color: white;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.burger {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  z-index: 9999;
  cursor: pointer;
}

.fullscreen-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: black;
  color: white;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 9998;
}

.fullscreen-menu.show {
  display: flex;
  flex-direction: column;
}

.menu-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu ul li {
  margin: 1.5rem 0;
}

.main-menu ul li a {
  font-size: 2rem;
  color: white;
  text-decoration: none;
}

.lang-search {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.languages a {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
}

.homepage-hero {
  height: 100vh;
  width: 100vw;
  background-image: url('https://so-far.ro/wp-content/uploads/2025/06/Hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 4rem;
}

.hero-text {
  max-width: 700px;
  text-align: right;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.3;
}

.hover-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  z-index: 100;
}

.hover-menu a {
  margin: 0 1rem;
  color: white;
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.hover-menu a:hover {
  opacity: 0.7;
}
