:root {
  --black: #0a0a0a;
  --gold: #ffb400;
  --orange: #f97316;
  --white: #fff;
}

* {box-sizing:border-box;margin:0;padding:0;}
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x:hidden;
}

/* ===== HEADER ===== */
.topbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 24px;
  background:#000;
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:100;
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
}
.logo {
  background: var(--gold);
  color:#000;
  font-weight:900;
  font-size:1.3rem;
  padding:6px 10px;
  border-radius:8px;
}
.site-title {
  font-weight:700;
  text-transform:uppercase;
  font-size:1rem;
}
.hamburger {
  display:flex;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.hamburger div {
  width:26px;
  height:3px;
  background:var(--white);
  border-radius:2px;
  transition:.3s;
}
.hamburger.active div:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.hamburger.active div:nth-child(2){opacity:0;}
.hamburger.active div:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}

/* ===== HERO ===== */
.hero {
  position:relative;
  height:130vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}
.hero-bg {
  background:url("../images/backgroundfullhd.png") center/cover;
  position:absolute;
  inset:0;
  z-index:-2;
  transform:scale(1);
  animation: zoomIn 10s ease-in-out infinite alternate;
}
@keyframes zoomIn {
  0%{transform:scale(1);}
  100%{transform:scale(1.1);}
}
.hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(160deg, rgba(0,0,0,0.9) 40%, rgba(249,115,22,0.3) 100%);
  z-index:-1;
}
.hero-content {
  color:var(--white);
  padding:0 20px;
  max-width:800px;
  animation: heroFade 2.5s ease forwards;
}
@keyframes heroFade {
  0% {opacity:0; transform:translateY(40px);}
  100% {opacity:1; transform:translateY(0);}
}
.hero-content h1 {
  font-family:'Bebas Neue', sans-serif;
  font-size:3.8rem;
  letter-spacing:1px;
  background:linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-size:200px;
  animation: shine 4s infinite linear;
}
@keyframes shine {
  0% {background-position:-200px center;}
  100% {background-position:200px center;}
}
.hero-content p {
  font-size:1.1rem;
  line-height:1.6;
  margin-top:10px;
}
.cta {
  display:inline-block;
  margin-top:24px;
  background:var(--gold);
  color:#000;
  padding:12px 28px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.5px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.cta:hover {
  transform:scale(1.05);
  box-shadow:0 0 20px rgba(255,180,0,0.4);
}

/* ===== INFO ===== */
.info {
  /* margin-top: 120px; */
  position:relative;
  background:#111;
  padding:100px 20px;
  text-align:center;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  overflow:hidden;
}
.info-bg {
  background:url('https://images.unsplash.com/photo-1594737625785-cd0f3fa5a3fe?auto=format&fit=crop&w=1920&q=80') center/cover;
  position:absolute;
  inset:0;
  opacity:.2;
  z-index:-1;
}
.info-content {
  max-width:800px;
  margin:auto;
}
.info-content h2 {
  font-family:'Bebas Neue', sans-serif;
  font-size:2.8rem;
  color:var(--gold);
  margin-bottom:12px;
  background:linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-size:200px;
  animation: shine 5s infinite linear;
}
.info-content p {
  font-size:1.1rem;
  color:#ddd;
  line-height:1.6;
}
.highlight {
  color:var(--gold);
  font-weight:700;
}

/* ===== CONTACT ===== */
.contact-banner {
  position:relative;
  background:url('https://images.unsplash.com/photo-1584467735871-1f3bfc4f51c2?auto=format&fit=crop&w=1920&q=80') center/cover;
  text-align:center;
  color:#fff;
  padding:100px 20px;
}
.contact-banner .overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.75);
}
.contact-banner .content {
  position:relative;
  z-index:2;
}
.contact-banner h3 {
  font-size:2rem;
  color:var(--gold);
  font-family:'Bebas Neue', sans-serif;
  margin-bottom:10px;
  background:linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-size:200px;
  animation: shine 6s infinite linear;
}
.contact-banner p {
  font-size:1.1rem;
  margin-bottom:20px;
}
.contacts a {
  display:block;
  color:var(--gold);
  font-weight:600;
  text-decoration:none;
  margin:6px 0;
  transition:color .3s ease;
}
.contacts a:hover {color:var(--orange);}

/* ===== FOOTER ===== */
footer {
  background:#000;
  color:#aaa;
  text-align:center;
  padding:18px;
  font-size:.9rem;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .hero-content h1{font-size:2.6rem;}
  .info{clip-path:none;}
}
/* ===== ABOUT PAGE ===== */
.hero.short {
  height:60vh;
}
.about-bg {
  background:url("../images/backgroundfullhd.png") center/cover;
}
.content-section {
  position:relative;
  background:#0c0c0c;
  padding:80px 20px;
  text-align:left;
  color:#eee;
}
.content-inner {
  max-width:900px;
  margin:auto;
}
.content-inner h2 {
  font-family:'Bebas Neue', sans-serif;
  color:var(--gold);
  font-size:2.8rem;
  margin-bottom:20px;
  background:linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-size:200px;
  animation: shine 6s infinite linear;
}
.content-inner p {
  margin-bottom:18px;
  line-height:1.7;
  font-size:1.05rem;
}
.center {
  text-align:center;
  margin-top:40px;
}
/* ===== SZOLGALTATASOK ===== */
.szolg-bg {
  background:url("../images/backgroundfullhd.png") center/cover;
}
.services-section {
  background:#0c0c0c;
  padding:80px 20px;
  color:#eee;
  position:relative;
}
.services-inner {
  max-width:900px;
  margin:auto;
}
.services-inner h2 {
  font-family:'Bebas Neue', sans-serif;
  font-size:2.3rem;
  color:var(--gold);
  margin-top:30px;
  margin-bottom:10px;
  background:linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-size:200px;
  animation: shine 6s infinite linear;
}
.services-inner h3 {
  font-family:'Bebas Neue', sans-serif;
  font-size:2rem;
  color:var(--orange);
  margin-top:40px;
}
.services-inner p {
  line-height:1.7;
  font-size:1.05rem;
}
.services-inner ul {
  margin-top:10px;
  list-style: none;
  padding:0;
}
.services-inner ul li {
  color:var(--gold);
  font-weight:600;
  margin-bottom:6px;
  position:relative;
  padding-left:18px;
}
.services-inner ul li::before {
  content:"•";
  color:var(--orange);
  position:absolute;
  left:0;
}
/* ===== EDUKÁCIÓ ===== */
.edukacio-bg {
  background:url('https://images.unsplash.com/photo-1594737625785-cd0f3fa5a3fe?auto=format&fit=crop&w=1920&q=80') center/cover;
}
.edukacio-section {
  background:#0c0c0c;
  padding:80px 20px;
  color:#eee;
  position:relative;
}
.edukacio-inner {
  max-width:900px;
  margin:auto;
}
.edukacio-inner h2 {
  font-family:'Bebas Neue', sans-serif;
  font-size:2.8rem;
  color:var(--gold);
  margin-bottom:20px;
  background:linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-size:200px;
  animation: shine 6s infinite linear;
}
.edukacio-inner p {
  line-height:1.7;
  font-size:1.05rem;
  margin-bottom:25px;
}
.edukacio-cikk {
  background:rgba(255,255,255,0.03);
  border-left:4px solid var(--orange);
  padding:20px;
  border-radius:10px;
  margin-bottom:20px;
  transition:transform .3s ease, box-shadow .3s ease;
}
.edukacio-cikk:hover {
  transform:translateY(-4px);
  box-shadow:0 0 20px rgba(255,180,0,0.2);
}
.edukacio-cikk h3 {
  font-family:'Bebas Neue', sans-serif;
  color:var(--gold);
  font-size:1.8rem;
  margin-bottom:10px;
}
/* ===== GALÉRIA ===== */
.gallery-bg {
  background:url('https://images.unsplash.com/photo-1594737625785-cd0f3fa5a3fe?auto=format&fit=crop&w=1920&q=80') center/cover;
}
.gallery-section {
  background:#0c0c0c;
  padding:80px 20px;
  color:#eee;
}
.gallery-inner {
  max-width:1100px;
  margin:auto;
}
.gallery-inner h2 {
  font-family:'Bebas Neue', sans-serif;
  font-size:2.8rem;
  color:var(--gold);
  margin-bottom:10px;
  background:linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-size:200px;
  animation: shine 6s infinite linear;
}
.gallery-intro {
  color:#ccc;
  font-size:1.05rem;
  margin-bottom:40px;
}
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
}
.gallery-item {
  overflow:hidden;
  border-radius:12px;
  position:relative;
}
.gallery-item img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease, filter .5s ease;
  filter:brightness(0.85);
}
.gallery-item:hover img {
  transform:scale(1.1);
  filter:brightness(1);
}
/* ===== KAPCSOLAT (ESZTÉTIKUS JAVÍTOTT VERZIÓ) ===== */
.contact-section {
  background: #0c0c0c;
  padding: 80px 20px;
  color: #eee;
}

.contact-inner {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.contact-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 40px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200px;
  animation: shine 6s infinite linear;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,180,0,0.15);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  padding: 30px 25px;
  flex: 1 1 240px;
  max-width: 300px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all .35s ease;
  box-shadow: 0 0 12px rgba(255,180,0,0.08);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,180,0,0.25);
  border-left-color: var(--gold);
}

.contact-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-card p,
.contact-card a {
  font-size: 1rem;
  color: #f3f3f3;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s ease;
  display: block;
  text-align: center;
  line-height: 1.5;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
    align-items: center;
  }
  .contact-card {
    max-width: 90%;
  }
}
/* ===== NAVBAR / HAMBURGER MENÜ ===== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 20px rgba(255,180,0,0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  background: var(--gold);
  color: #000;
  font-weight: 900;
  font-size: 1.4rem;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}

/* A hamburger legyen fixen a jobb-felső sarokban és a legfelső rétegen */
.hamburger {
  position: fixed;
  top: 22px;        /* finomhangolható */
  right: 28px;      /* finomhangolható */
  z-index: 4000;    /* a legmagasabb a három közül */
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.hamburger .bar {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ===== SIDE NAVIGATION ===== */
/* EGYETLEN .side-nav definíció maradjon! */
.side-nav {
  position: fixed;
  top: 0;
  right: -100%;         /* egységes: 100%-ról csússzon be */
  width: 260px;
  height: 100vh;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.4s ease;
  box-shadow: -2px 0 25px rgba(255,180,0,0.1);
  z-index: 2000;        /* a topbar alatt, a háttér felett */
}

.side-nav.active {
  right: 0;
}

.side-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  margin: 10px 0;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.side-nav a:hover,
.side-nav a.active {
  background: var(--gold);
  color: #000;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}
.close-btn:hover {
  color: var(--orange);
}

/* Desktop: hamburger rejtése */
@media (min-width: 900px) {
  .hamburger {
    display: none;
  }
  .side-nav {
    position: static;
    height: auto;
    width: auto;
    background: none;
    flex-direction: row;
    justify-content: flex-end;
    box-shadow: none;
  }
  .side-nav a {
    margin: 0 10px;
    background: none;
    color: #fff;
  }
  .side-nav a:hover {
    background: none;
    color: var(--gold);
  }
  .close-btn {
    display: none;
  }
}
