/* === Γενικές Ρυθμίσεις === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&family=Noto+Sans&display=swap');


body {
  background-image: url('https://www.storyradio.gr/photos/photospages/mem62.png'); /* ή αλλάζεις με δική σου εικόνα */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  color: #f0f8ff;
}


/* === Τίτλος Σταθμού === */
.station-title-glow {
  font-family: 'Tangerine', sans-serif;
  font-size: 40px;
  color: #f0f8ff;
  text-shadow: 0 0 4px #66ccff, 0 0 12px #3399ff, 0 0 20px #0066cc;
  animation: glowReveal 3s ease-in-out;
}

@keyframes glowReveal {
  0% {
    opacity: 0;
    text-shadow: none;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.6;
    text-shadow: 0 0 8px #3399ff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 4px #66ccff, 0 0 12px #3399ff, 0 0 20px #0066cc;
    transform: scale(1);
  }
}
.soundwave-line {
  width: 60%;
  height: 4px;
  margin: 20px auto;
  background: linear-gradient(to right, #33ccff, #0066cc);
  border-radius: 2px;
  box-shadow: 0 0 8px #3399ff;
  animation: pulseWave 3s infinite ease-in-out;
}

@keyframes pulseWave {
  0%   { transform: scaleX(1);   opacity: 0.6; }
  50%  { transform: scaleX(1.1); opacity: 1;   }
  100% { transform: scaleX(1);   opacity: 0.6; }
}


.waveform-svg .bar {
  fill: #33ccff;
  rx: 2;
  ry: 2;
  transform-origin: center bottom;
  animation: pulseBarSmooth 4s infinite ease-in-out;
}

.waveform-svg .bar1 { animation-delay: 0s; }
.waveform-svg .bar2 { animation-delay: 0.3s; }
.waveform-svg .bar3 { animation-delay: 0.6s; }
.waveform-svg .bar4 { animation-delay: 0.9s; }
.waveform-svg .bar5 { animation-delay: 1.2s; }
.waveform-svg .bar6 { animation-delay: 1.5s; }

@keyframes pulseBarSmooth {
  0%, 100% { transform: scaleY(1);   opacity: 0.5; }
  50%      { transform: scaleY(1.2); opacity: 0.9; }
}



.english-quote {
  color: #aad3ff;               /* απαλό γαλάζιο */
  font-style: italic;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  font-size: 1.05em;
}


.lyric-card {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px 25px;
  background: rgba(20, 30, 60, 0.3);   /* ημιδιαφανές μπλε-νυχτερινό */
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(51, 102, 204, 0.4);
  backdrop-filter: blur(6px);
  text-align: center;
  animation: fadeCard 2s ease-in;
}

.lyric-card .greek {
  font-size: 1.1em;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  color: #f0f8ff;
  margin-bottom: 8px;
}

.lyric-card .english {
  font-size: 1.05em;
  font-style: italic;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  color: #aad3ff;
}

@keyframes fadeCard {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



.statement-block {
  font-size: 1.05em;
  color: #f5f5f5;
  font-family: 'Palatino Linotype', serif;
  margin: 20px auto;
  max-width: 800px;
  line-height: 1.6;
}

.statement-block .statement-english {
  display: block;
  margin-top: 6px;
  font-size: 0.95em;
  color: #b3d1ff;
  font-style: italic;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
}





/* === Fade Animations === */
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-out {
  animation: fadeOut 1s ease-out forwards;
}

.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

/* === Ρήσεις και Αφιερώσεις === */
.quote-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 30px;
  color: #f0f8ff;
  font-size: 1.6em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.quote-author {
  font-size: 1.2em;
  color: #cfe8f3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* === Εφέ Αφής στα Links === */
a {
  text-decoration: none;
  color: #add8e6;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #add8e6;
}

/* === Footer και Credits === */
footer {
  text-align: center;
  font-size: 0.9em;
  color: #cccccc;
  margin-top: 40px;
}

/* === Ιδιομορφίες Streaming Block === */
#stream-player {
  width: 100%;
  height: 300px;
  border: none;
}

.streaming-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

/* === Responsive Grid Custom (αν θέλεις να επεκτείνεις αργότερα) === */
@media screen and (max-width: 600px) {
  .station-title {
    font-size: 36px;
  }
  .quote-box {
    font-size: 1.3em;
  }
}


.dedication-block {
  max-width: 800px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.dedication-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(25, 30, 50, 0.3);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(100, 140, 200, 0.3);
  backdrop-filter: blur(6px);
}

.dedication-photo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(51, 102, 204, 0.4);
}

.dedication-text {
  flex: 1;
}

.dedication-text .greek {
  font-size: 1.05em;
  color: #f0f0f0;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  margin-bottom: 5px;
}

.dedication-text .english {
  font-size: 0.95em;
  color: #aad3ff;
  font-style: italic;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
}

/* Broadcast Section Styling */
.broadcast-section {
  background-color: #f9f9f9;
  border-top: 2px solid coral;
  padding-bottom: 32px;
}

.broadcast-title {
  font-family: 'Georgia', serif;
  font-size: 2em;
  color: #3a3a3a;
  text-align: center;
}

.broadcast-subtitle {
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  font-size: 1.2em;
  color: #666;
  text-align: center;
}

.broadcast-quote {
  text-align: center;
  font-style: italic;
  color: #999;
}

.broadcast-image img {
  width: 100%;
  border-radius: 4px;
}

.broadcast-overlay-top,
.broadcast-overlay-bottom {
  font-weight: bold;
  font-size: 0.9em;
  padding: 6px;
  color: coral;
  text-shadow: 1px 1px 1px #000;
}

.broadcast-text {
  margin-top: 24px;
  font-size: 1em;
  line-height: 1.8;
}

.slideshow-container {
  width: 100%;
  max-width: 800px;
  height: 450px;               /* σταθερό ύψος */
  margin: 30px auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.slideshow-image {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* crop χωρίς παραμόρφωση */
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slideshow-image.active {
  opacity: 1;
}




/* Κρύψε όλα τα blocks γλώσσας εξαρχής */
.lang-block {
  display: none;
}

/* Αν θέλεις ομαλότερη μετάβαση εμφάνισης */
.lang-block {
  transition: all 0.3s ease-in-out;
}

.section-row {
  animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


.lyric-block p {
  margin-bottom: 20px;
}

.tragic-article {
  max-width: 800px;
  margin: auto;
  padding: 20px;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
}

.scene-block {
  margin: 40px 0;
}

.scene-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 10px;
}

.summary {
  font-style: italic;
  color: #555;
}

.back-button {
  display: inline-block;
  padding: 8px 12px;
  margin: 20px 0;
  background-color: #444;
  color: #f1f1f1;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: #666;
}


.article-nav {
  margin-top: 40px;
  text-align: center;
  gap: 20px;
}

.nav-button {
  font-size: 1.1em;
  padding: 10px 16px;
  text-decoration: none;
  background-color: #444;
  color: #fff;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.nav-button:hover {
  background-color: #666;
}

.nav-button.previous {
  margin-right: 10px;
}

.nav-button.next {
  margin-left: 10px;
}

.nav-title {
  display: block;
  font-size: 0.9em;
  color: #999;
  margin: 4px 0 10px;
}


/* 🔍 Κουμπί εμφάνισης popup */
.filter-toggle {
  background-color: #444;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 1em;
  cursor: pointer;
}

/* 🪟 Περιεχόμενο popup φίλτρου */
.filter-popup {
  background-color: #222;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.filter-popup.hidden {
  display: none;
}

/* 🧩 Dropdown φίλτρων */
.filter-popup label {
  display: block;
  margin: 8px 0 4px;
  font-weight: bold;
  color: #ccc;
}
.filter-popup select {
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 5px;
  background-color: #333;
  color: #eee;
  border: 1px solid #555;
  font-size: 0.95em;
  width: 100%;
  max-width: 300px;
}

/* ✅ Κουμπί εφαρμογής φίλτρου */
.filter-apply {
  background-color: #5a9;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-right: 10px;
}
.filter-apply:hover {
  background-color: #48a870;
}

/* ❌ Κουμπί καθαρισμού φίλτρων */
.filter-clear {
  background-color: #888;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}
.filter-clear:hover {
  background-color: #aaa;
}

/* ℹ️ Εμφάνιση ενεργών φίλτρων */
#filter-options {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 20px;
}
#filter-options span {
  margin-right: 12px;
}


.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .filter-buttons {
    flex-direction: row;
    justify-content: space-between;
  }

  .filter-buttons button {
    flex: 1 1 auto;
    font-size: 0.9em;
    padding: 8px 10px;
  }
}

@media (min-width: 601px) {
  .filter-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-buttons button {
    width: 200px;
    font-size: 1em;
    padding: 10px 14px;
  }
}

#filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
  font-size: 0.95em;
}

.filter-tag {
  background-color: #333;
  color: #eee;
  padding: 6px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-tag .icon {
  font-size: 1.1em;
  opacity: 0.8;
}
.filter-tag .icon {
  font-size: 1.1em;
  opacity: 0.8;
  margin-right: 4px; /* ➕ λίγο κενό μετά το εικονίδιο */
}

.filter-tag:hover {
  background-color: #444;
  transition: background-color 0.2s ease;
}
.page-button.active-page {
  background-color: #0056b3;     /* έντονο μπλε ή όποιο χρώμα ταιριάζει */
  color: white;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0,0,0,0.4);
}

.article-container {
  max-width: 800px;
  margin: 40px auto;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 30px;
  border-radius: 8px;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  color: #f0f8ff;
}

.article-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.article-title {
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  font-size: 2em;
  color: #ffd700;
  margin-bottom: 10px;
}

.article-meta {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 20px;
  text-align: center;
}

.article-content {
  font-size: 1.2em;
  line-height: 1.5em;
  text-align: center;
  padding: 20px;
  color: #f0f8ff;
}
.article-content * {
  color: #f0f8ff !important;
}
.article-content p {
  margin-bottom: 16px;
}

.article-content blockquote {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #ffeeba;
  padding: 10px 20px;
  font-style: italic;
  color: #ffeeba;
  margin: 20px 0;
}
#shmessage-block-1 {
  font-size: 1.05em;
  color: #f5f5f5;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  margin: 20px auto;
  max-width: 800px;
  line-height: 1.6;
}
#shmessage-block-2 {
  font-size: 1.05em;
  color: #f5f5f5;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  margin: 20px auto;
  max-width: 800px;
  line-height: 1.6;
}

#shbroadcast-block-1 {
  font-size: 1.05em;
  color: #f5f5f5;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  margin: 20px auto;
  max-width: 800px;
  line-height: 1.6;
}

/* CSS */

.social-section {
  background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
  color: #f0f8ff;
  text-align: center;
  padding: 60px 20px;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
}

.social-section h2 {
  font-size: 2em;
  color: #ffd700;
  margin-bottom: 20px;
  text-shadow: 0 0 8px #d4af37;
}

.social-section p {
  font-size: 1em;
  max-width: 650px;
  margin: 0 auto 30px;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.3); /* Σταθερή λάμψη */
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.social-card {
  background-color: rgba(17, 17, 17, 0.85);
  border: 1px solid #ffd700;
  border-radius: 14px;
  width: 220px;
  padding: 16px;
  font-size: 0.95em;
  text-decoration: none;
  color: #f0f8ff;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

.social-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 14px #ffd700;
}

.social-card h3 {
  font-size: 1.2em;
  color: #ffd700;
  margin-bottom: 8px;
}

.social-card p {
  font-size: 0.9em;
  line-height: 1.4;
}

.outlaw-button {
  background: linear-gradient(135deg, #3b2f2f, #7a5c4b);
  color: #fcebd5;
  font-family: 'Noto Serif', 'Noto Serif SC', 'Noto Serif JP', 'Noto Serif KR', serif;
  font-size: 1.15rem;
  padding: 14px 26px;
  border: 2px solid #2a1f1f;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.outlaw-button:hover {
  background: linear-gradient(135deg, #7a5c4b, #3b2f2f);
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}


.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* αναλογία 16:9 */
  height: 0;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

