/* ===================================================
   Header (Navbar) – BASE styles
   Logika:
   - Csak az alap / mobil-first stílusok kerülnek ide
   - Méretfüggő szabályokat a responsive.css tartalmazza
=================================================== */

/* ===================================================
   Navigációs sáv (logo + menü)
=================================================== */
.navbar {
  background-color: var(--light);
  border-bottom: 1px solid #eee;
  padding: 0.3rem 0;
  position: relative; 
  z-index: 100; 
  /*background: #fff;*/
}

.navbar-container {
  /*max-width: 100%; /* vagy: unset */
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  max-width: var(--container-width, 960px);
  margin: 0 auto; 
  padding: 0 .75rem;
}

.navbar-logo img {
  height: 44px;
  max-height: 50px;
  width: auto;
  display: block;
}

.navbar-menu { position: static; display: none;}

.navbar-menu ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1rem; }

.navbar-menu li {
  margin: 0;
}

.navbar-menu a {
  color: var(--blue);
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  display: block; padding: .5rem .4rem; text-decoration: none;
}

.navbar-menu a:hover {
  color: var(--gold);
}

.navbar-toggle { display: block; background: none; border: 0; padding: .5rem; cursor: pointer; }
.navbar-toggle .bar { display: block; width: 24px; height: 2px; margin: 5px 0; background: #333; border-radius: 2px; }

/* ===================================================
   Hero szekció
=================================================== */
.hero-section {
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  color: var(--light);
  text-align: center;
  position: relative;
  animation: fadeInUp 1s ease-out forwards;
  min-height: 270px;
  height: 270px;
  padding: 4rem 1rem;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: var(--font-family);
  margin-bottom: 0.5rem;
  color: white;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.2s;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  opacity: 0;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-family: var(--font-family);
  color: white;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
  margin: 0.5rem 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  opacity: 0;
}

.hero-tagline a{
  background-color: rgba(0, 0, 0, 0.3);
  color: inherit;
  font-style: italic;
  text-decoration: none; 
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 1.8rem;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.8s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  opacity: 0;
  margin-top: 0rem;
}

/* ===================================================
   Lábjegyzet (Footer)
=================================================== */
.footer {
  background-color: var(--dark);
  color: var(--light);
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}