/* utmutato.css - focused styles for the Útmutató page */
:root{
  --bg:#0e0e0e;
  --primary:#e63946;
  --primaryDark:#c81d25;
  --text:#f5f5f5;
  --muted:#bdbdbd;
}
body{
  margin:0;
  padding:0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg,#0b0b0b 0%, #0e0e0e 100%);
  color:var(--text);
}
.section-hero{
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0 20px;
  background-image: url('img/stock2.jpg');
  background-size: cover;
  background-position:center;
}
.wrapper{
  background: rgba(0,0,0,0.6);
  padding:28px;
  border-radius:14px;
  max-width:980px;
  width:100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.hero-text h1{
  font-family: 'Adumu', Arial, sans-serif;
  font-size: clamp(28px,6vw,52px);
  line-height:1.02;
  color:var(--text);
  letter-spacing:1px;
  text-align:center;
  margin-bottom:10px;
}
.hero-text h2{
  font-size: clamp(16px,2.6vw,22px);
  color:#ffdfe0;
  text-align:center;
  margin-bottom:18px;
}
.hero-text p{
  color:var(--text);
  font-size:18px;
  max-width:820px;
  margin:8px auto;
  text-align:center;
}
.cta-button{
  display:inline-block;
  background:var(--primary);
  color:var(--text);
  padding:14px 26px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.cta-button:hover{ transform: translateY(-3px); }
@media (min-width:700px){
  .hero-text p{ font-size:20px; }
}
.footer-note{ text-align:center; color:var(--muted); margin-top:12px; }
