
/* Alap beállítások */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Navigáció */
header {
  background-color: #000;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

nav ul li a {
  color: #ddd;
  padding: 0.5rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #fff;
}

/* Hero szekció */
.hero {
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Social gombok */
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-buttons a {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: bold;
  color: #fff;
  transition: background 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
}

.yt {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.tt {
  background: linear-gradient(135deg, #111111, #222222, #111111);
}

/* Szürke boxok */
section {
  margin: 2rem auto;
  padding: 2rem;
  max-width: 800px;
  background-color: #1f1f1f;
  border-radius: 12px;
  text-align: center;
}

/* Gombok */
.btn-download, .btn-partner {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: #fff;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn-download:hover, .btn-partner:hover {
  background: #2563eb;
}

/* Footer */
.site-footer {
  background-color: #111;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #d1d5db;
  border-top: 1px solid #2c2c2c;
}
.site-footer .footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.site-footer .footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer .footer-links a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 500;
}
.site-footer .footer-links a:hover {
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Hover animáció gradient gombokra */
.social-buttons a {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-buttons a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.partner {
  margin: 2rem auto;
  padding: 2rem;
  max-width: 800px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e1e3f, #2e1b47);
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.partner h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.partner p {
  margin-bottom: 1.5rem;
  color: #ddd;
}

.btn-partner {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-partner:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.partner {
  margin: 2rem auto;
  padding: 2rem;
  max-width: 800px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(88, 28, 135, 0.3));
  color: #fff;
  text-align: center;
  border: 1px solid rgba(30, 58, 138, 1);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.partner h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.partner p {
  margin-bottom: 1.5rem;
  color: #ddd;
}

.btn-partner {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #3b82f6;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-partner:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.ig {
  background: linear-gradient(135deg, #9333ea, #db2777);
}

.social-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: bold;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
}

.social-buttons a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* fehér ikon */
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: transparent;
}
.card img {
  width: 100%;
  max-width: 700px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 1rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.card img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.tortenet-title {
  text-align: center;
  margin-top: 3rem;
  font-size: 2rem;
}
.tortenet-blokk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 4rem auto;
  max-width: 1000px;
  flex-wrap: wrap;
}

.tortenet-blokk.reverse {
  flex-direction: row-reverse;
}

.tortenet-kep img {
  width: 100%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tortenet-kep img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.6);
}

.tortenet-szoveg {
  max-width: 450px;
  text-align: left;
}

.tortenet-szoveg .datum {
  color: #3b82f6;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.tortenet-vege {
  background-color: #111;
  padding: 2rem;
  margin: 4rem auto;
  max-width: 800px;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.tortenet-vege h2 {
  color: #3b82f6;
  margin-bottom: 1rem;
}
.tortenet-kep img,
.tortenet-kep video {
  width: 100%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tortenet-kep img:hover,
.tortenet-kep video:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.6);
}
.tortenet-szoveg a {
  color: #3b82f6; /* világoskék */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.tortenet-szoveg a:hover {
  color: #60a5fa; /* kicsit világosabb kékre hoverre */
  text-decoration: underline;
}
.issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.issue-card {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}

.issue-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0,0,0,0.4);
}

.issue-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.issue-card img:hover {
  opacity: 0.9;
}

.issue-card h3 {
  padding: 1rem;
  font-size: 1.1rem;
  color: #fff;
}

.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #fff;
}

.tag.error {
  background-color: #e53935;
}

.tag.missing {
  background-color: #fb8c00;
}

.tag.inprogress {
  background-color: #1e88e5;
}

.tag.done {
  background-color: #009488;
}

.tag.rozsda {
  background-color: #884d00;
}

.centered {
  text-align: center;
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox img,
.lightbox video {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

#lightbox-caption {
  color: white;
  margin-top: 16px;
  font-size: 18px;
  text-align: center;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.caption {
  margin-top: 10px;
  text-align: center;
  color: white;
  font-weight: bold;
}
.issue-card video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.issue-card video:hover {
  transform: scale(1.05);
}
.zoom-button {
  margin-top: 8px;
  padding: 6px 12px;
  background-color: #ffffff22;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.zoom-button:hover {
  background-color: #ffffff44;
}
.price {
  color: #33dd77;
  font-weight: bold;
}
/* Tábla stílus */
.parts-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 1rem;
}

.parts-table thead th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  background-color: #1c1c1c;
}

.parts-table tbody td {
  padding: 12px 16px;
  border-top: 1px solid #333;
}

.parts-table td:last-child {
  color: #30e070; /* ár zölddel */
  font-weight: 500;
}

/* Szekciók */
.part-section {
  background: #151515;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 900px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.part-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #4299e1;
}

/* Fontos megjegyzés */
.important-note {
  background: linear-gradient(135deg, #1c1b38, #251e42);
  color: white;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

.important-note h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.important-note ul {
  list-style: disc;
  padding-left: 1.5rem;
  line-height: 1.7;
}
/* Táblázat igazítás javítása */
.parts-table td,
.parts-table th {
  text-align: center;
  vertical-align: middle;
}

/* Fontos megjegyzés szekció */
.important-note {
  background: linear-gradient(135deg, #1c1b38, #251e42);
  color: white;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  border: 1px solid #4299e1; /* világoskék keret */
  text-align: center;
}

.important-note h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

/* Lista középre és stílus */
.important-note ul {
  list-style-position: inside;
  text-align: left;
  margin: 0 auto;
  max-width: 650px;
  padding-left: 0;
  line-height: 1.6;
}
h1 {
  text-align: center;
}
.parts-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; /* egységes oszlopszélesség */
  margin-top: 1rem;
  font-size: 1rem;
}

.parts-table th,
.parts-table td {
  text-align: center;
  padding: 12px;
  border-top: 1px solid #333;
  white-space: nowrap;
}

.parts-table th {
  background-color: #1a1a1a;
  font-weight: bold;
  color: white;
}

.parts-table td:last-child {
  color: #00ff66;
  font-weight: 500;
}

.parts-table td:nth-child(2),
.parts-table th:nth-child(2) {
  text-align: center;
}




/* === Javított alkatrész táblázat stílus === */
.parts-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  margin-top: 1rem;
  font-size: 1rem;
}

.parts-table thead th {
  padding: 12px 16px;
  font-weight: bold;
  background-color: #1a1a1a;
  color: white;
  border-top: 1px solid #333;
}

.parts-table td {
  padding: 12px 16px;
  border-top: 1px solid #333;
  white-space: nowrap;
}

.parts-table th:nth-child(1),
.parts-table td:nth-child(1) {
  text-align: left;
  width: 40%;
}

.parts-table th:nth-child(2),
.parts-table td:nth-child(2) {
  text-align: center;
  width: 30%;
}

.parts-table th:nth-child(3),
.parts-table td:nth-child(3) {
  text-align: right;
  width: 30%;
  color: #00ff66;
  font-weight: 500;
}
/* Keresőmező stílus */
.search-container {
  text-align: center;
  margin: 2rem auto;
  max-width: 500px;
}

#partSearch {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #1f1f1f;
  color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

#partSearch:focus {
  outline: none;
  box-shadow: 0 0 12px #4299e1;
  background-color: #2a2a2a;
}
.button-row {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.note-button,
.link-button {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.85rem;
  background: linear-gradient(to right, #4299e1, #2b6cb0);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.note-button:hover,
.link-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(66, 153, 225, 0.6);
}
.membership-section {
  background: #151515;
  color: white;
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: 2rem auto;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.membership-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.membership-section h2 {
  color: #4299e1;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.benefit-tag {
  background: #1c1c1c;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid #333;
}

.membership-tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.tier-card {
  background: #1c1c1c;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  position: relative;
  border: 2px solid transparent;
}

.tier-card.highlight {
  border: 2px solid #4299e1;
}

.tier-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.tier-price {
  font-size: 2rem;
  font-weight: bold;
  color: #4299e1;
  margin-bottom: 0.5rem;
}

.tier-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.tier-card ul li::before {
  content: "✓ ";
  color: #33dd77;
  font-weight: bold;
}

.join-button {
  margin-top: 1rem;
  background: #2d3748;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.join-button:hover {
  background: #4299e1;
}

/* Tag */
.tier-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #4299e1;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: bold;
}

.faq-section {
  max-width: 900px;
  background: #1a1a1a;
  padding: 2rem;
  margin: 2rem auto;
  border-radius: 12px;
}

.faq-section h2 {
  color: #4299e1;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.faq-section p {
  margin-bottom: 1rem;
}

.support-box {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: linear-gradient(90deg, #112233, #122b45);
  color: white;
  border-left: 5px solid #4299e1;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.support-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
/* Támogatói szekció */
.intro-section {
  background: #1a1a1a;
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  text-align: center;
  border: 1px solid #2a2a2a;
  transition: box-shadow 0.3s ease-in-out;
}

.intro-section:hover {
  box-shadow: 0 0 20px rgba(66, 153, 225, 0.5);
}

.intro-section h2 {
  font-size: 1.9rem;
  color: #3fa4ff;
  margin-bottom: 1rem;
  animation: fadeInDown 0.6s ease-out;
}

.intro-section p {
  font-size: 1.1rem;
  color: #e2e2e2;
  line-height: 1.6;
  animation: fadeIn 1s ease-in;
}

/* Egységes méret */
.intro-section,
.tiers {
  max-width: 900px;
}

/* Animációk */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Egységes animáció minden section-nek */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeInUp 0.8s ease-out both;
  animation-delay: 0.2s;
}

/* === Kérdések és Kapcsolat Section === */
.faq-contact-container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.faq-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.faq-section, .contact-section {
  flex: 1 1 500px;
}

.section-subtitle {
  font-size: 1.5rem;
  color: #3B82F6;
  margin-bottom: 1rem;
}

.faq-box {
  background-color: #1e1e1e;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000030;
  transition: transform 0.3s ease;
}
.faq-box:hover {
  transform: scale(1.02);
}

.faq-box h3 {
  font-size: 1.1rem;
  color: #f97316;
  margin-bottom: 0.3rem;
}

.faq-box p {
  font-size: 0.95rem;
  color: #ccc;
}

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;
}

.info-box {
  background: linear-gradient(135deg, #151521, #24082e);
  border: 1px solid #3b82f6;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  min-width: 300px;
  flex: 1;
  box-shadow: 0 0 10px #00000040;
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.info-box ul {
  padding-left: 1.2rem;
}

.info-box li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #ddd;
}

/* Fade-in animation */
.fade-in {
  animation: fadeIn 0.8s ease-in-out both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-box {
  background: linear-gradient(135deg, #1e1e3f, #2e1b47);
  border: 1px solid rgba(100, 148, 255, 0.6);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(100, 148, 255, 0.3);
}

.info-box h3,
.info-box h4 {
  color: #fff;
  margin-bottom: 1rem;
}

.info-box ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.info-box li {
  margin-bottom: 0.5rem;
}
/* ========== Tervek oldal stílus ========= */
.future-plans {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background: #1b1b1b;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  animation: fadeIn 0.8s ease-in-out both;
}
.future-plans h2 {
  color: #58a6ff;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
.future-item {
  background: linear-gradient(135deg, #222, #2c2c2c);
  margin: 1.5rem 0;
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.future-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgb(29, 82, 155);
}
.future-item img {
  max-width: 200px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.future-item img:hover {
  transform: scale(1.05);
}
.future-details {
  flex: 1;
}
.future-details h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.future-details p {
  color: #cccccc;
  margin: 0.3rem 0;
}
.future-details .price {
  color: #42e16c;
  font-weight: bold;
}
.future-details a.button {
  display: inline-block;
  margin-top: 0.8rem;
  background-color: #58a6ff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.future-details a.button:hover {
  background-color: #3d7fcc;
}
.future-kesz {
  color: #00b3b3;
}
.future-tervben {
  color: #ffd000;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.image-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}
.image-modal .modal-content {
  margin: 10% auto;
  display: block;
  max-width: 80%;
  border-radius: 8px;
}
.close-modal {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
#typewriter {
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
  border-right: 2px solid #ffffff;
  white-space: nowrap;
  overflow: hidden;
}

/* Villogó kurzor animáció */
.blinking {
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-card {
  background: #1e1e1e;
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(90, 160, 255, 0.2);
}

.contact-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-card h3 {
  color: #58a6ff;
  margin-bottom: 0.3rem;
}

.contact-card i {
  width: 32px;
  height: 32px;
  color: white;
  margin-bottom: 0.5rem;
}


.contact-card a {
  color: #58a6ff;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.note {
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  margin-top: 2rem;
}
nav ul li a.active {
  color: #58a6ff;
  font-weight: bold;
  position: relative;
}

nav ul li a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 50%;
  height: 2px;
  background-color: #58a6ff;
  border-radius: 2px;
}
nav ul li a.active::after {
  transition: width 0.3s ease;
}
/* === Project Haladás === */
.project-summary {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease;
}
.project-summary h2 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.project-summary .progress-bar {
  height: 8px;
  background: #333;
  border-radius: 6px;
  margin: 1rem 0;
  overflow: hidden;
}
.project-summary .progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #8e44ff, #6a5acd);
  border-radius: 6px;
  width: 0;
  animation: fillBar 1.2s ease forwards;
}
.project-summary ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  text-align: left;
}
.project-summary ul li {
  padding: 0.5rem 0;
  color: #ddd;
  border-bottom: 1px solid #2a2a2a;
}
/* === Haladás oldalszekció === */
.checklist-section {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 12px;
  max-width: 900px;
  margin: 2rem auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  animation: fadeInUp 0.8s ease-in-out;
}
.checklist-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
}
.stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat-box {
  flex: 1 1 200px;
  background: #111;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.stat-box span {
  display: block;
}
.stat-box .value {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 0.5rem;
}
.blue { color: #4ea6ff; }
.green { color: #42e16c; }
.yellow { color: #ffcc33; }
.purple { color: #c18cff; }

.progress-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
.progress-bar {
  width: 100%;
  height: 12px;
  background: #333;
  border-radius: 6px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #a570ff, #695aff);
  border-radius: 6px;
  width: 0;
  animation: fillBar 1s forwards;
}

.checklist-group h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}
.checklist-item {
  background: #222;
  color: #ddd;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.checklist-item.done {
  border-left: 4px solid #42e16c;
  opacity: 0.6;
  text-decoration: line-through;
}
.checklist-item.inprogress {
  border-left: 4px solid #ffcc33;
}
.checklist-item.todo {
  border-left: 4px solid #ff5c5c;
}

.badge {
  display: inline-block;
  background: #555;
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 0.5rem;
}
.badge.done { background: #42e16c; }
.badge.inprogress { background: #ffcc33; }
.badge.todo { background: #888; }
.badge.high { background: #e74c3c; }
.badge.medium { background: #f1c40f; }
.badge.low { background: #2ecc71; }

/* === Mérföldkövek === */
.milestones {
  background: linear-gradient(135deg, #150c39, #101e47);
  border-radius: 12px;
  padding: 2rem;
  max-width: 900px;
  margin: 3rem auto;
  text-align: center;
  color: white;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.milestones h2 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.milestone-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}
.milestone {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 8px;
  flex: 1 1 250px;
  min-width: 200px;
  transition: transform 0.3s ease;
}
.milestone:hover {
  transform: scale(1.03);
}
.short-term h3 { color: #f1c40f; }
.mid-term h3 { color: #ffa500; }
.long-term h3 { color: #2ecc71; }

/* === Animációk === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fillBar {
  to { width: 26.7%; }
}
.tortenet-szoveg p {
  margin-bottom: 1rem; /* vagy pl. 16px */
}
.media-rounded {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.cikkszam-btn {
  display: inline-block;
  background-color: #3b82f6;     /* világoskék háttér */
  color: white;                  /* fehér szöveg */
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cikkszam-btn:hover {
  background-color: #2563eb;     /* sötétebb kék hoverre */
  transform: scale(1.03);
  text-decoration: underline;
}
ul li a i {
  margin-right: 8px;
  vertical-align: middle;
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 24px;
  z-index: 999;
  /* egyedi stílusaid jöhetnek ide */
}
#page-notice {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  width: 600px;
  background-color: #007BFF; /* Kék alapszín */
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  z-index: 9999;
  animation: fadeInDown 0.6s ease-out;
}

.notice-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.notice-text {
  line-height: 1.5;
}

#close-notice {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

#close-notice:hover {
  color: #ffcdd2;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
