/* itlovagok.css – cyber / lovagi stílus */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;800&family=Inter:wght@300;400;600&display=swap');

.box.box-landing-1 .box__caption {
  display: block;
  text-align: center;
  line-height: 100px;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.hero-section {
  height: 750px;
  background-size: cover;
  background-position: center;
  position: relative;
  font-family: 'Orbitron', sans-serif;
}

:root {
    --bg-dark: #020617;
    --bg-card: rgba(15, 23, 42, 0.7);
    --neon: #00d4ff;
    --neon-glow: 0 0 8px #00d4ff, 0 0 16px rgba(0, 212, 255, 0.5);
    --purple: #a855f7;
    --text-light: #e2e8f0;
    --border-glow: 1px solid rgba(0, 212, 255, 0.3);
}

html {
    font-size: 18px;
}
body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 0;
}

/* HEADER – átlátszó, neon csík */
header {
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--neon);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 55px;
    filter: drop-shadow(0 0 6px var(--neon));
}

.brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--neon));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-main {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-main a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    transition: 0.2s;
    position: relative;
}

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--neon);
    transition: 0.3s;
}

.nav-main a:hover {
    color: var(--neon);
    text-shadow: var(--neon-glow);
}

.nav-main a:hover::after {
    width: 100%;
}

/* KÁRTYÁK (hírek, események) */
.news-container, .events-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.news-title, .events-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neon);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--bg-card);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    border: var(--border-glow);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px -5px rgba(0, 212, 255, 0.3);
    border-color: var(--neon);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.2rem;
}

.news-content h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.news-content h2 a {
    color: var(--neon);
    text-decoration: none;
}

.news-content p {
    color: #94a3b8;
    line-height: 1.4;
}

.news-btn {
    display: inline-block;
    margin-top: 1rem;
    color: var(--neon);
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.news-btn:hover {
    text-shadow: var(--neon-glow);
    transform: translateX(4px);
}

/* RÉSZLETES OLDAL */
.article-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

.article-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--neon);
    margin-bottom: 0.5rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.article-image img {
    width: 100%;
    border-radius: 1rem;
    margin: 1rem 0;
}

.article-content {
    line-height: 1.6;
    font-size: 1.05rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--neon);
    text-decoration: none;
    font-weight: bold;
}

.back-link:hover {
    text-shadow: var(--neon-glow);
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 2rem;
    border-top: var(--border-glow);
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 3rem;
}

/* ========== IDŐVONAL ========== */
.timeline-container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.timeline-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--neon);
    margin-bottom: 0.5rem;
}

.timeline-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--neon);
    box-shadow: var(--neon-glow);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(8px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.2rem;
    top: 0.2rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: var(--neon-glow);
    transition: 0.2s;
}

.timeline-item:hover::before {
    transform: scale(1.3);
    background: #fff;
    box-shadow: 0 0 12px var(--neon);
}

.timeline-year {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--neon);
    margin-bottom: 0.25rem;
    letter-spacing: 2px;
}

.timeline-title-item {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.timeline-desc {
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.timeline-image {
    margin-top: 0.8rem;
    max-width: 100%;
    border-radius: 0.8rem;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.8rem;
    transition: 0.2s;
}

.timeline-image img:hover {
    transform: scale(1.02);
}
/* Kérdőívek kártyák */
.kerdoivek-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.kerdoivek-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.kerdoivek-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.kerdoiv-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.kerdoiv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px -5px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.kerdoiv-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.kerdoiv-content {
    padding: 1.2rem;
}

.kerdoiv-content h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    color: #00d4ff;
}

.kerdoiv-content p {
    color: #94a3b8;
    line-height: 1.4;
}

.kerdoiv-meta {
    display: flex;
    gap: 1rem;
    margin: 0.75rem 0;
    font-size: 0.75rem;
    color: #64748b;
}

.kerdoiv-meta i {
    margin-right: 0.25rem;
}

.kerdoiv-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.875rem;
    transition: 0.2s;
}

.kerdoiv-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.kerdoivek-empty {
    text-align: center;
    padding: 3rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
