//* ========== Napi Manna – PC Stílus (a logó színeihez igazítva) ========== */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Alap test és tipográfia */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
  background: #faf8fc;
  color: #2e1a38;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 16px;
}

/* Teljes oldal elrendezés */
.desktop-main {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

/* ========== OLDALSÁV ========== */
.sidebar {
  width: 280px;
  background: linear-gradient(180deg, #670056 0%, #be11af 60%, #d946ef 100%);
  color: #fff;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.sidebar a {
  color: #fbe9ff;
  text-decoration: none;
  padding: 0.8em 1em;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: background 0.3s, transform 0.2s;
}
.sidebar a:hover,
.sidebar a:focus {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}
.sidebar a.active {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 700;
}

/* ========== FŐ TARTALOM ========== */
.main-content {
  background: #fff;
  padding: 2.5em;
  flex-grow: 1;
  box-sizing: border-box;
}

/* Fejlécek */
.content-header h1 {
  font-size: 2.4em;
  color: #670056;
  font-weight: 800;
  margin-bottom: 0.3em;
  text-shadow: 0 0 8px rgba(217, 70, 239, 0.3);
}
.content-header .tagline {
  color: #9b59b6;
  font-size: 1.1em;
  margin-bottom: 2em;
}

/* ========== SZEKCIÓK ========== */
.content-section {
  background: #ffffff;
  border-left: 6px solid #be11af;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1.8em;
  margin-bottom: 2em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.content-section h2 {
  font-size: 1.8em;
  color: #670056;
  margin-bottom: 1em;
  font-weight: 700;
}

/* ========== HÍR BLOKKOK ========== */
.news-block {
  max-width: 900px;
  margin: 0 auto 3em;
}
.news-header {
  font-size: 2em;
  color: #670056;
  text-align: center;
  margin-bottom: 1.5em;
  font-weight: 800;
}

.news-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.5em;
  margin-bottom: 1.5em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #d946ef;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(217, 70, 239, 0.25);
}

.news-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* modern böngészőkben automatikusan 16:9 arányt tart */
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.news-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* a teljes kép mindig látszik */
  border-radius: 8px;
  display: block;
}



.news-title {
  font-size: 1.5em;
  color: #670056;
  margin-bottom: 0.4em;
  font-weight: 700;
}

.news-content p {
  color: #333;
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 1em;
}

.news-footer {
  font-size: 0.9em;
  color: #666;
  text-align: right;
  font-style: italic;
}

/* ========== KÉPEK / KÁRTYÁK ========== */
.card-thumb {
  width: 100%;
  max-width: 480px;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .desktop-main {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sidebar a {
    font-size: 0.95em;
    padding: 0.6em 0.8em;
  }
  .main-content {
    padding: 1.5em;
  }
}

@media (max-width: 768px) {
  .news-image {
    max-height: 220px;
  }
  .content-header h1 {
    font-size: 1.8em;
  }
}

/* ========== Napi Manna – Mobil Stílus (logó színeihez igazítva) ========== */

/* Reset */
* { box-sizing: border-box; margin:0; padding:0; }
html, body { height: 100%; scroll-behavior: smooth; }

/* Alap test */
body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background: #f9f6fb;
  color: #2e1a38;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 70px;
  -webkit-font-smoothing: antialiased;
}

/* ========== FEJLÉC ========== */
.mobile-header-image {
  height: 180px;
  background: linear-gradient(135deg, #670056 0%, #be11af 60%, #d946ef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.header-overlay { text-align: center; padding: 1em; }

.logo-container h1 {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.1rem;
  animation: pulseTitle 2.5s ease-in-out infinite;
  text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.radio-icon { font-size: 2.3rem; }
.tagline { font-size: 0.95rem; opacity: 0.95; }

.live-indicator {
  position: absolute;
  right: 12px;
  top: 12px;
  background: rgba(255, 0, 0, 0.9);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.5);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%{opacity:1}50%{opacity:.4}100%{opacity:1} }

/* ========== KONTAINER / SZEKCIÓK ========== */
.mobile-main { padding: 14px; max-width: 980px; margin: 0 auto; }

.section {
  background: #fff;
  border-left: 6px solid #be11af;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.8s forwards;
}
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* ========== RÁDIÓ LEJÁTSZÓ ========== */
.radio-player-section {
  background: linear-gradient(135deg, #111827 0%, #0f172a 100%);
  color: #fff;
  border-radius: 12px;
  padding: 16px;
}
.current-track { font-size: 0.95rem; margin-bottom: 8px; color: #f3f4f6; }
.player-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.btn {
  background: #be11af;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: background-color 0.3s, transform 0.2s;
}
.btn:hover { background-color: #d946ef; transform: scale(1.05); }
.btn.secondary { background: rgba(255,255,255,0.08); }
.status { color: #e6e6e6; font-size: 0.9rem; margin-left: 8px; }
.volume {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.volume input[type=range] { width: 60%; }

/* ========== NAPI IGE / MEDITÁCIÓ ========== */
.daily-verse-section {
  border-left: 6px solid #670056;
}
.daily-verse-section blockquote {
  font-style: italic;
  color: #333;
  margin: 8px 0;
  padding-left: 8px;
}
.reflection { color: #444; margin-top: 6px; }

/* ========== HÍREK ========== */
.news-section h2 {
  font-size: 1.1rem;
  color: #670056;
  font-weight: 700;
  margin-bottom: 8px;
}
.news-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(182, 17, 175, 0.3);
}
.news-image img { width: 100%; height: auto; display: block; border-radius: 10px 10px 0 0; }
.news-body { padding: 12px; }
.news-meta { font-size: 0.8rem; color: #777; margin-bottom: 6px; }
.news-title { color: #be11af; font-weight: 700; margin-bottom: 6px; }
.news-excerpt { color: #333; font-size: 0.95rem; line-height: 1.45; }

/* ========== MENÜ / RÁCSOS ELRENDEZÉS ========== */
.quick-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.menu-card {
  display: block;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #222;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(217, 70, 239, 0.3);
}

/* ========== KÁRTYÁK / BLOG ========== */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.card-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.stats-grid {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  text-align: center;
}
.stat-item {
  flex: 1;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.stat-number {
  font-size: 1.4rem;
  color: #670056;
  font-weight: 700;
}

/* ========== LÁBLÉC TÁVOLSÁG ========== */
.footer-space { height: 40px; }

/* ========== ANIMÁCIÓK ========== */
@keyframes pulseTitle {
  0%, 100% {
    text-shadow: 0 0 6px rgba(182, 17, 175, 0.8);
  }
  50% {
    text-shadow: 0 0 12px rgba(255, 69, 239, 1);
  }
}

/* ========== KISEBB KIJELZŐK ========== */
@media (min-width: 700px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .quick-menu-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 400px) {
  .btn:hover { transform: none; }
  .section { animation-delay: 0 !important; }
}
/* ========== Blog szakaszok========== */

/* Blog szakaszok */
.content-section {
  margin-bottom: 3em;
}
.content-section h2 {
  font-size: 1.8em;
  color: #2c0741;
  margin-bottom: 0.8em;
}

/* Blog post lista - kártyák */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5em 2em;
}

/* Általános card stílus */
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Kép */
.card-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-color: #f5f5f5;
  display: block;
  border-radius: 10px 10px 0 0;
}

/* Kártya tartalom */
.card-body {
  padding: 1.2em 1.5em 1.5em;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Meta információ */
.card-meta {
  font-size: 0.85em;
  color: #999;
  margin-bottom: 0.5em;
  font-style: italic;
}

/* Cím - MOST ERŐSEBB SZELEKTORRAL, FONTOS */
.card .card-title {
  font-size: 1.4em !important;
  color: #2c0741 !important;
  margin-bottom: 0.8em;
  font-weight: 700;
  line-height: 1.2;
  flex-grow: 1;
}

/* Leírás */
.card-text {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1.5em;
  flex-grow: 0;
}

/* Hivatkozás */
.card-link {
  margin-top: auto;
  text-decoration: none;
  color: #670056;
  font-weight: 700;
  font-size: 1em;
  transition: color 0.2s;
  align-self: flex-start;
}
.card-link:hover {
  color: #511243;
}

/* Blog képek egyedi stílus */
.post-image {
  width: 70%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 1.7em;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Görgetősáv stílusok */
.sidebar::-webkit-scrollbar,
.main-content::-webkit-scrollbar {
  width: 8px;
}
.sidebar::-webkit-scrollbar-thumb,
.main-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

/* Mobil nézet */
@media (max-width: 768px) {
  /* Oldalsáv elrejtése */
  .sidebar {
    display: none;
  }
  
  /* Kártyák egy oszlopban */
  .card-grid {
    grid-template-columns: 1fr;
  }

  /* Main tartalom kisebb margóval */
  .main-content {
    padding: 1em;
  }

  /* Fejléc kisebb mérete */
  .content-header h1 {
    font-size: 1.8em;
  }

  /* Kártyaképek magasabbak mobilon */
  .card-thumb {
    height: 220px;
    border-radius: 8px;
  }
}
/* Mobilon a sidebar ne látszódjon */
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }

  .main-content {
    margin-left: 0;
    width: 100%;
  }
}
/* ========== Videok========== */

/* Fő tartalom */
.main-content {
  background: #fff;
  padding: 2em;
}
@media (max-width: 768px) {
  .main-content {
    padding: 1em;
  }
}

/* Fejlécek */
.content-header h1 {
  font-size: 2.2em;
  color: #2c0741;
  margin-bottom: 0.3em;
}
.content-header .tagline {
  color: #7d5687;
  font-size: 1em;
}

/* Szakaszcímek */
.content-section h2 {
  font-size: 1.5em;
  color: #2c0741;
  margin-bottom: 0.6em;
}
.content-section {
  margin-bottom: 2em;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5em;
}

/* Általános card stílus */
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.card-body {
  padding: 1em;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-meta {
  font-size: 0.85em;
  color: #999;
  margin-bottom: 0.5em;
}
.card-title {
  font-size: 1.2em;
  color: #2c0741;
  margin-bottom: 0.8em;
  flex-grow: 1;
}
.card-text {
  font-size: 0.95em;
  color: #555;
  line-height: 1.4;
  margin-bottom: 1em;
}
.card-link {
  margin-top: auto;
  text-decoration: none;
  color: #670056;
  font-weight: bold;
  transition: opacity 0.2s;
}
.card-link:hover {
  opacity: 0.8;
}

/* Blog képek */
.post-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 1.5em;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Lista nézet kártyák – blog */
.card-thumb {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  background-color: #f5f5f5;
  display: block;
}

/* Videókártyák speciális stílus */
.video-card .card-thumb,
.video-card iframe.card-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 8px 0 0;
  display: block;
  border: none;
}
.video-card .card-meta {
  font-size: 0.85em;
  color: #555;
  margin: 0.5em 1em 0;
}
.video-card .card-link {
  margin: 1em;
}

/* Button outline */
.button-outline {
  display: inline-block;
  padding: 0.6em 1.2em;
  border: 2px solid #670056;
  color: #670056;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.button-outline:hover {
  background: #670056;
  color: #fff;
}

/* Scrollbar stílusok */
.sidebar::-webkit-scrollbar,
.main-content::-webkit-scrollbar {
  width: 8px;
}
.sidebar::-webkit-scrollbar-thumb,
.main-content::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}
.video-card .card-title {
  font-size: 1.1em;
  color: #2c0741;
  margin: 0.5em 1em;
}
/* Chat-ablak fix magasság, belül görgetés */
.chat-container {
  max-height: 500px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #e4e4e4;
}
#chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1em;
  background: #fafafa;
}
#chat-input {
  display: flex;
  padding: 0.5em;
  background: #f1f1f1;
}
#chat-input textarea {
  flex: 1;
  resize: vertical;
}
#chat-input button {
  margin-left: 0.5em;
}
.message .meta .admin-badge {
  background: #c00;
  color: #fff;
  padding: 0.1em 0.3em;
  border-radius: 3px;
  font-size: 0.75em;
  margin-left: 0.5em;
}
@media (max-width: 768px) {
  .sidebar {
    display: none !important;
  }
}

}
/* ========== Imakeres========== */

/* Main */
.main-content {
  background: #f7f3f9;
  padding: 2em;
  overflow-y: auto;
}
.content-header h1 { font-size: 2em; color: #2c0741; }
.tagline { color: #7d5687; margin-top: 0.3em; }

/* Sections */
.content-section {
  background: #fff;
  border-radius: 8px;
  padding: 1.5em;
  margin-bottom: 2em;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.content-section h2 { font-size: 1.3em; color: #2c0741; margin-bottom: 0.8em; }

/* Form */
.form-card textarea {
  width: 100%;
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
  margin-bottom: 1em;
}
.button-outline {
  display: inline-block;
  padding: 0.6em 1.2em;
  border: 2px solid #670056;
  color: #670056;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.button-outline:hover {
  background: #670056;
  color: #fff;
}
.form-card button {
  background: #670056;
  color: #fff;
  border: none;
  padding: 0.8em 1.2em;
  border-radius: 6px;
  cursor: pointer;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2em;
}
.card {
  background: #fff;
  border-radius: 6px;
  padding: 1em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.card-text { margin-bottom: 0.8em; color: #333; }
.card-meta { font-size: 0.85em; color: #777; text-align: right; }
/* Responsive */
@media (max-width: 768px) {
  .desktop-main {
    display: block;
  }
  .sidebar {
    width: 100%;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .main-content {
    padding: 1em;
  }
  .content-section {
    padding: 1.5em;
  }
  .content-header h1 {
    font-size: 1.8em;
  }
}


/* ========== Imakeresadmin========== */
/* Bejelentkezési űrlap stílusok */
.login-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.login-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #005bb5;
}

.login-form p {
    text-align: center;
    color: red;
}

/* Admin panel */
.admin-dashboard {
    padding: 20px;
}

.admin-dashboard h1 {
    text-align: center;
    margin-bottom: 20px;
}

.admin-dashboard table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.admin-dashboard th, .admin-dashboard td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.admin-dashboard th {
    background-color: #f0f0f0;
}

.admin-dashboard tr:nth-child(even) {
    background-color: #fafafa;
}

.admin-dashboard tr:hover {
    background-color: #e0e0e0;
}

.admin-dashboard .actions {
    text-align: center;
}

.admin-dashboard .actions a {
    margin: 0 5px;
}

.admin-dashboard .actions a:hover {
    color: #ff0000;
}

/* Szerkesztés űrlap */
.admin-dashboard textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    resize: vertical;
    height: 150px;
}

.admin-dashboard button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.admin-dashboard button:hover {
    background-color: #218838;
}

/* Kijelentkezés */
.admin-dashboard a.logout {
    display: inline-block;
    margin-top: 20px;
    color: #dc3545;
    font-weight: bold;
    text-decoration: none;
}

.admin-dashboard a.logout:hover {
    text-decoration: underline;
}

/* Reszponzív stílusok */
@media (max-width: 768px) {
    .login-form {
        width: 90%;
    }

    .admin-dashboard table {
        font-size: 14px;
    }

    .admin-dashboard textarea {
        height: 100px;
    }

    .admin-dashboard button {
        width: 100%;
    }
}

/* ========== Fórum========== */

/* Alapértelmezett stílusok */

.forum-container {
    display: flex;
    justify-content: space-between;
}

.main-forum {
    width: 70%;
    margin-right: 20px;
}

.sidebar-data {
    width: 30%;
    background-color: #f1f1f1;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h2 {
    color: #333;
}

.forum-list {
    list-style: none;
    padding: 0;
}

.forum-list li {
    margin-bottom: 10px;
}

.forum-link {
    color: #007BFF;
    text-decoration: none;
}

.forum-link:hover {
    text-decoration: underline;
}

.btn {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

.textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
}

.input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.message {
    color: green;
    font-weight: bold;
}

.view-topic {
    margin-top: 20px;
}

.messages {
    margin-top: 20px;
}

.messages p {
    margin-bottom: 10px;
}

/* ========== Hír========== */
.news-block { flex: 1; max-width: 900px; margin: 25px auto; padding: 10px 24px 24px 24px; }
.news-header { text-align: center; margin-bottom: 20px; color: #333; }
.news-card { background: #fff; margin-bottom: 25px; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.2); padding: 15px; }
.news-image img { width: 100%; height: auto; border-radius: 8px; margin-bottom: 10px; object-fit: contain; display: block; }
.news-title { font-size: 1.4rem; color: #007BFF; margin: 10px 0; }
.news-content blockquote { font-size: 1rem; line-height: 1.6; color: #444; margin: 0; }
.news-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-top: 10px; color: #666; font-size: 0.9rem; }

.share-buttons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.share-btn { display: flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 6px; color: #fff; text-decoration: none; font-size: 0.9rem; }
.share-btn i { font-size: 1rem; }
.fb { background: #1877F2; }
.msg { background: #00B2FF; }
.ig { background: #E4405F; }

@media (max-width: 900px) {
  .desktop-main { flex-direction: column; }
  .sidebar { width: auto; flex-direction: row; overflow-x: auto; }
  .share-buttons { justify-content: center; }
  .share-btn { flex: 1; justify-content: center; min-width: 100px; }
}

/* ========== vendégkönyv========== */

/* ========== VENDÉGKÖNYV STÍLUSOK ========== */

/* Main content */
.main-content {
  background: #fff; 
  padding: 2em; 
  overflow-y: auto;
  min-height: 100vh;
}

h1 {
  font-size: 2.5em; 
  color: #2c0741; 
  margin-bottom: 1em;
  text-align: center;
  font-weight: 700;
}

/* Guestbook container */
.guestbook-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Form card - most világoszöld (#7FFF7F) */
.form-card {
  background: #800080; /* Világoszöld háttér */
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  margin-bottom: 2.5rem;
  color: #2c0741;
  border: none; /* keret eltávolítása */
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 1.2rem;
  border: 2px solid rgba(44, 7, 65, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #2c0741;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: rgba(44, 7, 65, 0.6);
}

.form-card input:focus,
.form-card textarea:focus {
  outline: none;
  border-color: #2c0741;
  background: white;
  box-shadow: 0 0 0 3px rgba(44, 7, 65, 0.1);
}

.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

/* Submit button */
.submit-btn {
  background: #670056;
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(103, 0, 86, 0.3);
}

.submit-btn:hover {
  background: #8A0075;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(103, 0, 86, 0.4);
}

/* Entries container */
.entries-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

/* Entries header */
.entries-header {
  background: linear-gradient(135deg, #2c0741 0%, #4a0a6b 100%);
  padding: 1.5rem 2rem;
  margin-bottom: 0;
}

.entries-header h3 {
  color: white;
  margin: 0;
  font-size: 1.4em;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Entry cards - most rózsaszín (#E0039C) */
.entry {
  background: #E0039C; /* Élénk rózsaszín háttér */
  padding: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeIn 0.5s ease;
  color: white;
  position: relative;
  overflow: hidden;
}

.entry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF1493, #FF69B4);
}

.entry:last-child {
  border-bottom: none;
}

.entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.entry-name {
  font-weight: bold;
  color: white;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.entry-date {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95em;
  background: rgba(0, 0, 0, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.entry-message {
  line-height: 1.7;
  color: white;
  white-space: pre-wrap;
  font-size: 1.05em;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1rem;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
  background: #fafafa;
}

.empty-state div {
  font-size: 4em;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.empty-state h3 {
  color: #2c0741;
  margin-bottom: 0.5rem;
  font-size: 1.8em;
}

.empty-state p {
  font-size: 1.1em;
  color: #777;
}

/* Alert messages */
.alert {
  padding: 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  animation: slideDown 0.3s ease;
  border-left: 5px solid;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-left-color: #28a745;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border-left-color: #dc3545;
}

/* Character count */
.char-count {
  text-align: right;
  font-size: 0.9em;
  color: rgba(44, 7, 65, 0.8);
  margin-top: -0.8rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive design */
@media (max-width: 992px) {
  .guestbook-container {
    padding: 15px;
  }
  
  .main-content {
    padding: 1.5em;
  }
  
  h1 {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .guestbook-container {
    padding: 10px;
  }
  
  .main-content {
    padding: 1em;
  }
  
  h1 {
    font-size: 1.9em;
  }
  
  .form-card {
    padding: 1.8rem;
  }
  
  .entry-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  
  .entry-date {
    align-self: flex-start;
  }
  
  .entry {
    padding: 1.5rem;
  }
  
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.7em;
  }
  
  .form-card {
    padding: 1.5rem;
  }
  
  .entries-header h3 {
    font-size: 1.2em;
  }
  
  .entry-name {
    font-size: 1.1em;
  }
}

/* ========== Keresztény Kérdések és Válaszok========== */
/* Elrendezés */

@media (max-width: 768px) {
  .desktop-main {
    display: block;
  }
}
/* Fő tartalom */
.main-content {
  background: #fff;
  padding: 2em;
}
@media (max-width: 768px) {
  .main-content {
    padding: 1em;
  }
}

/* Vissza gomb */
.back-button {
  display: inline-block;
  margin-bottom: 1em;
  color: #670056;
  text-decoration: none;
  font-weight: 600;
}
.back-button:hover {
  text-decoration: underline;
}

/* Wrapper */
.wrapper {
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  text-align: center;
}

/* Fejlécek */
.wrapper h1 {
  font-size: 2em;
  color: #2c0741;
  margin-bottom: 0.5em;
}
.subtitle {
  font-style: italic;
  color: #555;
  margin-bottom: 0.5em;
}
.note {
  font-style: italic;
  color: gray;
  margin-bottom: 1.5em;
}

/* FAQ */
.faq-container {
  text-align: left;
}
.question {
  background: #2c0741;
  color: #e4c1f9;
  padding: 10px;
  margin: 10px 0 5px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}
.question::after {
  content: '?';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #e4c1f9;
}
.answer {
  display: none;
  background: #f9f9f9;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  line-height: 1.5;
}
.answer.show {
  display: block;
}

/* Reszponzív */
@media (max-width: 768px) {
  .wrapper {
    padding: 1.5em;
  }
  .wrapper h1 {
    font-size: 1.8em;
  }
  .back-button {
    font-size: 12px;
    padding: 8px 12px;
  }
}
/* Tesztelek */

