* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
}

a { text-decoration: none; color: inherit; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  transition: background .3s ease, backdrop-filter .3s ease;
}

header.scrolled {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  font-weight: 700;
  font-size: 1.4rem;
}

nav a {
  margin-left: 20px;
  font-weight: 500;
  position: relative;
}

nav a.active::after,
nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #e63946;
}

/* TOP IMAGE */
.top-image-strip {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.top-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%; /* ⬅️ EZ A KULCS */
}


/* INTRO */
.intro-strip {
  padding: 24px 0;           /* feszesebb */
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* HERO SECTION – EZ A KULCS */
.hero-section {
  background: #f9f9f9;
  padding: 28px 0;           /* EGYSÉGES FELSŐ/ALSÓ */
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.buttons {
  margin: 16px 0;
  display: flex;
  gap: 16px;
}

/* BUTTONS */
button {
  all: unset;
  cursor: pointer;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
}

.btn.primary {
  background: #e63946;
  color: #fff;
}

.btn.secondary {
  background: #457b9d;
  color: #fff;
}

.helper-text {
  font-size: 0.95rem;
  color: #555;
}

/* COPY MESSAGE */
.copy-message {
  display: none;
  margin-top: 10px;
  font-weight: 600;
  color: #2a9d8f;
}

/* VIDEO */
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* CTA */
.cta {
  background: #e63946;
  color: #fff;
  text-align: center;
  padding: 56px 20px;
}

/* FOOTER */
footer {
  background: #111;
  color: #bbb;
  text-align: center;
  padding: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  nav { display: none; }

  .top-image-strip {
    height: 220px;
  }
}

.info-strip {
  background: #f7f7f7;
  padding: 1.5rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-box {
  background: #ffffff;
  padding: 1.6rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left; /* ⬅️ EZ */
}


.info-box h3 {
  color: #c40000;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.info-box p {
  color: #444;
  line-height: 1.6;
  font-size: 1.1rem; /* ⬅️ EZ */
}


/* Mobil */
@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}


footer {
  background: #111;
  padding: 2.5rem 1rem;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-social a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social svg {
  width: 32px;
  height: 32px;
  fill: #888;
  transition: fill 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover svg {
  fill: #c40000;
  transform: translateY(-2px);
}

.footer-copy {
  color: #777;
  font-size: 0.9rem;
}


.cta {
  background: #c40000;
  color: #ffffff;
  text-align: center;
  padding: 3rem 1.5rem;
}

.cta-logo {
  max-width: 340px;
  margin: 0 auto 1.2rem;
  display: block;
}

.cta h2 {
  margin-bottom: 0.8rem;
}

.cta-tax {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cta .helper-text {
  font-size: 0.95rem;
  opacity: 0.9;
}


.info-single {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}


/* HEADER ALAP */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* NAV DESKTOP */
.main-nav {
  display: flex;
  gap: 1.5rem;
}

/* HAMBURGER ALAP */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #c40000;
  margin: 5px 0;
  transition: 0.3s;
}

/* MOBIL */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    padding: 1.5rem;
    gap: 1rem;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .main-nav.open {
    display: flex;
  }
}






.buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.arrow {
  font-size: 1.6rem;
  color: #bbb;
  opacity: 0.8;
  user-select: none;
}

@media (max-width: 768px) {
  .buttons {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }
}


/* ===== SLIDESHOW ===== */
.slideshow-container {
  width: 100%;
  max-width: 900px;
  margin: 20px auto; /* kisebb, feszesebb */
}

.slideshow-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.slideshow-frame img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.5s ease-in-out,
    transform 6s ease-in-out;
}

/* ===== SLIDESHOW ===== */


.footer-links {
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #aaa;
}

.footer-links a {
  color: #aaa;
  margin: 0 0.3rem;
}

.footer-links a:hover {
  color: #c40000;
  text-decoration: underline;
}

.footer-links span {
  opacity: 0.4;
}




.info-box ul {
  margin: 1rem 0 0 0;
  padding-left: 1.2rem;
}

.info-box li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
