*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

/* =========================
   ALAP OLDAL HÁTTÉR
========================= */
body{
  min-height:100vh;
  background: linear-gradient(
    180deg,
    #7a1e1e 0%,
    #f7f3ee 50%,
    #1e4d33 100%
  );
  color:#111;
}

/* =========================
   NAVBAR
========================= */
nav{
  position:sticky;
  top:0;
  z-index:1000;

  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(10px);

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:12px 20px;
  border-bottom:1px solid rgba(0,0,0,0.08);
}

nav a{
  text-decoration:none;
  margin:0 10px;
  font-weight:600;
  color:#7a1e1e;
  transition:0.2s;
}

nav a:hover{
  color:#1e4d33;
}

.logo{
  height:40px;
}

/* =========================
   LAYOUT
========================= */
.container{
  max-width:1100px;
  margin:auto;
  padding:40px 20px;
}

.card{
  background:white;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   HERO (FŐOLDAL)
========================= */
.hero-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
  text-align:center;
}

.hero-logo{
  width:120px;
  height:120px;
  object-fit:contain;
}

.hero-title h1{
  font-size:2rem;
  margin-bottom:8px;
}

.hero-title p{
  opacity:0.8;
  margin:0;
}

/* =========================
   SZÖVEGEK
========================= */
h1{
  font-size:2rem;
  color:#1e4d33;
}

h2{
  color:#1e4d33;
  margin-bottom:15px;
}

p{
  line-height:1.6;
}

/* =========================
   GOMBOK
========================= */
button{
  padding:12px 16px;
  background:#1e4d33;
  color:white;
  border:none;
  border-radius:8px;
  cursor:pointer;
  font-weight:bold;
}

button:hover{
  background:#163826;
}

/* =========================
   FORM ELEMEK
========================= */
input, textarea{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:1px solid #ccc;
  border-radius:8px;
}

/* =========================
   FOOTER
========================= */
footer{
  text-align:center;
  padding:30px;
  color:#555;
  margin-top:40px;
}

/* =========================
   MOBILE
========================= */
@media (max-width:768px){

  nav{
    flex-direction:column;
    gap:10px;
  }

  .hero-title{
    flex-direction:column;
  }

  .hero-logo{
    width:90px;
    height:90px;
  }

  nav a{
    margin:0 6px;
    font-size:14px;
  }
}