:root {
  --bg: #f5efe6;
  --text: #0e0e11;
  --accent: #1a1a1a;
  --font-main: 'Helvetica Neue', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}


.header {
  padding: 2rem 0 1rem;
  text-align: center;
}


.hero {
  text-align: center;
  padding: 2rem 1rem;
}

.banner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 2rem;
  display: block;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: #333;
}

.subscribe {
  background-color: #ffffff;
  padding: 3rem 1rem;
  text-align: center;
}

.subscribe h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.subscribe-form input {
  padding: 0.7rem 1rem;
  width: 100%;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.subscribe-form button {
  background-color: var(--accent);
  color: white;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background-color: #000;
}

.footer {
  padding: 2rem 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.hero-text {
  text-align: center;
}

.hero-image img {
  max-width: 480px;
  height: auto;
}

/* Kicsit modernebb elrendezés nagyobb képernyőn */
@media (min-width: 768px) {
  .hero-layout {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .hero-text {
    max-width: 50%;
  }

  .hero-image {
    max-width: 45%;
  }
}

.intro {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 1.1rem;
  color: #333;
}


.header {
   padding: 1rem 0 0.5rem;
  background-color: var(--bg);
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-height: 52px;
}

.lang-select {
  padding: 0.4rem;
  font-size: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}