/*
Theme Name: Futurisztikus Foglaló Téma
Author: WordPress Témagyártó
Description: Modern, sötét stílusú WordPress sablon neon glow hatással és időpontfoglaló rendszerrel
Version: 1.0
*/

:root {
  --bg-dark: #0a0f1f;
  --primary-glow: #00f7ff;
  --secondary-glow: #ff00f7;
  --text-light: #e0e0e0;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}


a {
  color: var(--primary-glow);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-glow);
}

/* Glow gomb */
.button, .btn-primary {
  background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  box-shadow: 0 0 20px var(--primary-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button:hover, .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--secondary-glow);
}

/* Kártyák */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,255,255,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255,0,247,0.2);
}

.card-content {
  padding: 1.5rem;
}

.card-content h2 {
  color: var(--primary-glow);
}

/* Fejléc */
header {
  background: linear-gradient(to right, #0a0f1f, #141927);
  padding: 1.5rem 5%;
  box-shadow: 0 2px 10px rgba(0,255,255,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 a {
  font-size: 2rem;
  color: var(--primary-glow);
  text-shadow: 0 0 10px var(--primary-glow);
}

/* Lábléc */
footer {
  background-color: var (--footer-bg);
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

/* Betűtípus – Orbitron */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700&display=swap');
/* Navigációs menü */
nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

nav ul li a {
  color: var(--primary-glow); /* Visszaállítva neon színre */
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.4);
}

nav ul li a:hover {
  background-color: var(--glass);
  color: var(--secondary-glow); /* Hover neon árnyalat */
  box-shadow: 0 0 15px rgba(255, 0, 247, 0.5);
}

/* Reszponzív viselkedés – nem törik sort egy oszlopba */
@media (max-width: 768px) {
  nav ul {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    color: var(--primary-glow);
    cursor: pointer;
    margin-left: auto;
  }

  nav {
    display: none;
  }

  nav.active {
    display: block;
  }
}
.hero {
  height: 85vh;
  background: radial-gradient(circle at center, #0a0f1f 0%, #02040a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, var(--primary-glow), var(--secondary-glow));
  opacity: 0.05;
  animation: moveGlow 10s linear infinite;
}

@keyframes moveGlow {
  0% { transform: translate(-25%, -25%); }
  50% { transform: translate(25%, 25%); }
  100% { transform: translate(-25%, -25%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1.5s ease-out both;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--primary-glow);
  text-shadow: 0 0 15px var(--primary-glow);
  animation: glowText 3s ease-in-out infinite alternate;
}

@keyframes glowText {
  from { text-shadow: 0 0 5px var(--primary-glow); }
  to { text-shadow: 0 0 25px var(--primary-glow); }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin: 1rem 0 2rem;
  opacity: 0.9;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 4rem 5%;
  background: radial-gradient(circle at center, #0a0f1f 0%, #02040a 100%);
  overflow: hidden;
}

.hero-left, .hero-right {
  flex: 1;
  animation-duration: 1.2s;
  animation-fill-mode: both;
}

.hero-left {
  animation-name: slideInLeft;
}

.hero-right {
  animation-name: slideInRight;
}

.hero-left h1 {
  font-size: 3rem;
  color: var(--primary-glow);
  text-shadow: 0 0 15px var(--primary-glow);
  margin-bottom: 1rem;
}

.hero-left p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.hero-right img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,255,255,0.1);
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Mobil reszponzivitás */
@media (max-width: 768px) {
  .hero.hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-left, .hero-right {
    animation: none;
  }
}
.site-footer {
  background-color: #080b15;
  color: #e0e0e0;
  padding: 4rem 5% 2rem;
}

.footer-container {
  padding: 0 5%;
  width: 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-title {
  color: var(--primary-glow);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-about {
  line-height: 1.6;
  color: #ccc;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-glow);
}

.widget {
  color: #ccc;
}

.widget-title {
  color: var(--secondary-glow);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
}
.single-post {
  max-width: 800px;
  margin: 4rem auto;
  color: #ccc;
}

.post-title {
  font-size: 2.5rem;
  color: var(--primary-glow);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--primary-glow);
}

.post-meta {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 2rem;
}

.post-thumbnail img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,255,255,0.1);
  margin-bottom: 2rem;
}

.post-content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #e0e0e0;
}

.post-tags {
  margin-top: 2rem;
  font-size: 0.9rem;
}
.recent-posts {
  padding: 4rem 0;
  background-color: #0f1525;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-glow);
  margin-bottom: 3rem;
}
.archive-post {
  background: var(--glass);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,255,255,0.05);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.archive-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255,0,247,0.1);
}

.archive-post h2 {
  color: var(--primary-glow);
  margin-bottom: 0.5rem;
}

.archive-post .post-meta {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 1rem;
}
.search-filter {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
}

.search-filter form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}

.search-filter input,
.search-filter select {
  padding: 0.75rem;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
  min-width: 200px;
}

.search-filter input {
  flex: 2;
}

.search-filter select {
  flex: 1;
}
.featured-posts {
  padding: 3rem 5%;
  background: #0a0f1f;
}

.featured-grid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 2rem;
}

.featured-large {
  background: var(--glass);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.featured-large img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-content {
  padding: 1.5rem;
}

.featured-content h2 {
  color: var(--primary-glow);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.featured-small-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.featured-small {
  background: var(--glass);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.featured-small:hover {
  transform: translateY(-5px);
}

.featured-small img {
  width: 100%;
  height: auto;
  display: block;
}

.featured-small-title {
  padding: 1rem;
  font-weight: bold;
  color: var(--primary-glow);
}
.more-posts {
  padding: 4rem 0;
  background-color: #0f1525;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--primary-glow);
  margin-bottom: 3rem;
}
.header-container {
  padding: 0 5%;
  width: 100%;
}
header,
footer,
.site-header,
.site-footer {
  width: 100%;
  display: block;
}
.container,
.single-post,
.header-container,
.footer-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 2rem;
  margin: 0 auto;
}
.footer-social {
  display: flex;
  gap: 1rem;
  font-size: 1.5rem;
}

.footer-social a {
  color: var(--primary-glow);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--secondary-glow);
}
.footer-social i {
  font-size: 1.5rem;
  color: var(--primary-glow);
  transition: color 0.3s ease;
}

.footer-social a:hover i {
  color: var(--secondary-glow);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary-glow);
}

/* Mobil nézet: hamburger jelenjen meg */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.page-header-bar {
  background: linear-gradient(to right, var(--primary-glow), var(--secondary-glow));
  color: white;
  padding: 4rem 5%;
  text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 0 20px rgba(0,255,255,0.1);
}

.page-header-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0,255,255,0.3);
}
/* Általános törzsszöveg */
.post-content,
.page-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* Bekezdések */
.post-content p,
.page-body p {
  margin-bottom: 1.5rem;
}

/* Címsorok */
.post-content h2,
.page-body h2 {
  font-size: 1.8rem;
  color: var(--primary-glow);
  margin: 2rem 0 1rem;
}

.post-content h3,
.page-body h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  color: var(--secondary-glow);
}

/* Listák */
.post-content ul,
.page-body ul {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.post-content li,
.page-body li {
  margin-bottom: 0.5rem;
}

/* Idézet (blockquote) */
.post-content blockquote,
.page-body blockquote {
  border-left: 4px solid var(--primary-glow);
  padding-left: 1rem;
  font-style: italic;
  color: #ccc;
  margin: 2rem 0;
}
.breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: #aaa;
}

.breadcrumbs a {
  color: var(--primary-glow);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--secondary-glow);
}
.contact-page {
  max-width: 700px;
  margin: 4rem auto;
}

.contact-form label {
  display: block;
  margin: 1.5rem 0 0.5rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  background: var(--card-bg);
  color: var(--text-color);
  border: none;
  border-radius: 8px;
}

.contact-form button {
  margin-top: 2rem;
}
.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--text-color);
  border: none;
  margin-bottom: 1rem;
}

.wpcf7 input[type="submit"] {
  background: linear-gradient(90deg, var(--primary-glow), var(--secondary-glow));
  color: white;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  transition: background 0.3s ease;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

.sub-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-menu .menu-item {
    padding: 10px;
}
.menu-item-has-children:hover .sub-menu {
  display: block;
}

.sub-menu {
  display: none;
  position: absolute;
  background: var(--card-bg);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
}

.sub-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
}
.comments-area {
  margin: 4rem auto;
  max-width: 700px;
  padding: 2rem;
  background: var(--glass);
  border-radius: 10px;
}

.comment-form textarea {
  min-height: 150px;
  font-size: 1rem;
  resize: vertical;
}

.comment-form label {
  font-weight: bold;
}

.comment-form input {
  width: 100%;
  background-color: #111827;
  color: #e0e0e0;
  border: 1px solid var(--primary-glow);
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.comment-form .btn-primary {
  display: inline-block;
  border: none;
  cursor: pointer;
}
.related-posts {
  margin-top: 4rem;
  padding: 2rem;
  background: var(--glass);
  border-radius: 10px;
}

.related-posts h2 {
  margin-bottom: 1rem;
  color: var(--primary-glow);
}
.comments-area {
  margin: 4rem auto;
  max-width: 700px;
  padding: 2rem;
  background: var(--glass);
  border-radius: 10px;
}

.comment-form {
  position: relative;
}

.comment-form textarea {
  min-height: 180px;
  font-size: 1rem;
  resize: vertical;
  width: 100%;
  padding-bottom: 2.5rem; /* Hely a gomboknak */
}

.comment-tools {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.comment-tools button {
  background: var(--glass);
  color: var(--text-light);
  border: 1px solid var(--primary-glow);
  padding: 2px 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}

.comment-tools button:hover {
  background: var(--primary-glow);
  color: #000;
}
