/* Επαναφορά padding και margin */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Στυλ για το body */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
}

/* Κεντρική δομή */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Κεφαλίδα */
header {
    background-color: #333;
    padding: 20px 0;
}

header .logo img {
    height: 50px;
    margin-right: 20px;
    display: inline-block;
}

header nav ul {
    list-style: none;
    display: inline-block;
    text-align: center;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #f39c12;
}

/* Στυλ για την κύρια περιοχή */
main {
    padding: 40px 0;
}

#home {
    text-align: center;
    margin-bottom: 40px;
}

#home h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#home p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.player {
    display: flex;
    flex-direction: column;
    align-items: center; /* Στοίχιση στο κέντρο */
    justify-content: center;
    margin-top: 20px; /* Δίνει απόσταση από τα υπόλοιπα */
}

.play-button {
    background-color: #f39c12;
    border: none;
    padding: 15px 30px;
    font-size: 1.4rem;
    cursor: pointer;
    color: white;
    border-radius: 8px;
    margin-bottom: 10px; /* Δίνει απόσταση από το player */
    display: block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.play-button:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}

audio {
    width: 100%; /* Για να ταιριάζει σε κινητά */
    max-width: 400px; /* Περιορισμός για να μην γίνει τεράστιο */
}


#shows {
    margin-bottom: 40px;
    text-align: center;
    border-radius: 1px;
    border-color: red;
}

.show {
    display: inline-block;
    width: 45%;
    margin: 10px;
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.show img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.show h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#contact {
    text-align: center;
    margin-bottom: 40px;
}

/* Στυλ για το footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222; /* Σκούρο background για καλύτερη αντίθεση */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

footer p {
    font-size: 1rem;
}

.chat-container {
    max-height: 400px;  /* ή οποιοδήποτε άλλο ύψος θέλεις */
    overflow-y: auto;   /* Επιτρέπει την κύλιση μόνο κατακόρυφα */
    border: 1px solid #ccc;
    padding: 10px;
}



.now-playing {
    background-color: #222;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 20px;
    display: inline-block;
    color: #f39c12;
}

#songName {
    transition: opacity 0.5s ease-in-out;
}

#chatIframe {
    display: none;
    width: 300px;
    height: 400px;
    position: fixed;
    bottom: 60px; /* Εδώ το έχουμε βάλει λίγο πιο πάνω */
    right: 20px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Στυλ για το κουμπί του chat */
#chatButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1001; /* Βάζουμε το κουμπί πάνω από το iframe */
}

#chatButton:hover {
    background-color: #0056b3;
}

/* Στυλ για το κουμπί κλεισίματος - Αρχικά κρυφό */
#closeButton {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 5px;
    display: none; /* Κρυφό αρχικά */
}

#closeButton:hover {
    background-color: #cc0000;
}

.equalizer {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.eq-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 150px;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    margin: 5px 0;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1db954;
    cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1db954;
    cursor: pointer;
}
#enableEQ {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background: #1db954;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

audio {
    margin-top: 20px;
    width: 300px;
}
.equalizer {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.eq-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 150px;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    margin: 5px 0;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1db954;
    cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #1db954;
    cursor: pointer;
}
#enableEQ {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background: #1db954;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Προγραμμα εκπομπών */
.shows-schedule-container {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ff5722;
    border-radius: 15px;
    padding: 20px;
    margin: 30px auto;
    max-width: 800px;
    text-align: center;
}

.shows-schedule-container h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ff5722;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.show-card {
    background: rgba(255, 87, 34, 0.2);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.show-card:hover {
    transform: scale(1.03);
    background: rgba(255, 87, 34, 0.3);
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.4);
}

.show-card h4 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 18px;
}

.show-time {
    color: #ccc;
    margin: 0;
    font-size: 16px;
}

/* Responsive για κινητά */
@media (max-width: 600px) {
    .shows-grid {
        grid-template-columns: 1fr;
    }
}

