/* ================= RESET / ALAP ================= */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  margin: 0;
  background: #ffffff;
  color: #222;
}

/* ================= LAYOUT ================= */
.container {
  max-width: 900px;
  margin: auto;
  padding: 24px;
}

/* ================= TYPO ================= */
h1, h2, h3 {
  color: #111;
  line-height: 1.3;
}

h1 {
  font-size: 32px;
}

p {
  margin: 16px 0;
}

/* ================= LINK ================= */
a {
  color: #e30613;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ================= LISTÁK ================= */
ul, ol {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* ================= HERO (főoldal) ================= */
.hero-image {
  margin: 24px 0 32px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  object-fit: cover;
  animation: floatFade 1.1s ease-out forwards;
}

@keyframes floatFade {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ================= BREADCRUMB (aloldalak) ================= */
.breadcrumb {
  font-size: 14px;
  margin: 12px 0 24px;
  color: #666;
}

.breadcrumb a {
  color: #666;
}

.breadcrumb a:hover {
  color: #e30613;
}

.breadcrumb span {
  margin: 0 6px;
  color: #999;
}

/* ================= LEAD ================= */
.lead {
  font-size: 18px;
  margin: 20px 0 28px;
}

/* ================= CTA SZÍNVARIÁNSOK ================= */

/* Alap (piros) – már megvan a .cta-ban */
.cta {
  background: #e30613;
  color: #ffffff;
  padding: 16px;
  text-align: center;
  border-radius: 10px;
  margin: 24px 0;
  font-size: 20px;
  font-weight: bold;
}

/* Kék – információ / figyelem */
.cta-blue {
  background: #1e73be;
}

/* Zöld – pozitív döntés / siker */
.cta-green {
  background: #2e7d32;
}

/* Narancs – határidő közeleg / figyelmeztetés */
.cta-orange {
  background: #f57c00;
}

/* Finom kontraszt mobilon */
@media (max-width: 768px) {
  .cta-blue,
  .cta-green,
  .cta-orange {
    filter: brightness(1.05);
  }
}


/* ================= FOOTER ================= */
.footer {
  font-size: 14px;
  color: #666;
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  line-height: 1.6;
}

/* ================= MOBIL ================= */
@media (max-width: 768px) {
  .container {
    padding: 16px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 21px;
  }

  .lead {
    font-size: 16px;
  }

  .cta {
    font-size: 18px;
    padding: 14px;
  }

  .hero-image img {
    border-radius: 14px;
  }

  .breadcrumb {
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 23px;
  }

  .cta {
    font-size: 17px;
  }
}


.cta a,
.cta-link {
  color: #ffffff;
  text-decoration: underline;
}

.cta a:hover {
  text-decoration: none;
  opacity: 0.9;
}

 
.copy-text {
  cursor: pointer;
  font-weight: bold;
  color: #e30613;
}

.copy-text:hover {
  text-decoration: underline;
}

/* Kimásolható adószám – fehér verzió */
.copy-text {
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  text-decoration: underline;
}

.copy-text:hover {
  opacity: 0.9;
}

.copy-hint {
  margin-left: 8px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0.85;
}

.emoji-white {
  filter: brightness(0) invert(1);
}


