:root{
  --bg:#0f1724; --card:#0b1220; --accent:#ff5a5f; --muted:#9aa4b2;
  --nav-height:64px; --player-height:84px; --max-width:1100px;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;color:#e6eef6;background:#F4F5EB;background:#F0F2E1;}
a{color:inherit;text-decoration:none}

/* Top nav */
header.topnav{
   position:fixed;top:0; left:0; right:0; height:var(--nav-height); display:flex; align-items:center; justify-content:center; backdrop-filter:blur(6px);
  background:black; z-index:40; padding:8px 16px;
}
.topnav .inner{width:100%; max-width:var(--max-width);  display:flex;align-items:center; gap:16px;justify-content:space-between; }
.brand-left{width:140px; height:48px; border-radius:8px; background:; }

/* Nav menu */
nav.center ul{
   display:flex;gap:30px; list-style:none; padding:0; margin:0; transition:max-height 0.3s ease;
}
nav.center li{
  cursor:pointer; padding:8px 12px; border-radius:8px; transition: background-color 0.3s ease, color 0.3s ease;
}
nav.center li:hover, nav.center li.active{ background-color: #FCFCCF; color:black; }
.hero-section {
      background-color: ;
	 background-image: url('');
  background-size: cover;        /* καλύπτει πάντα ολόκληρο το div */
  background-position: center;   /* η εικόνα παραμένει κεντραρισμένη */
  background-repeat: no-repeat;  /* δεν επαναλαμβάνεται */
                   /* το ύψος το καθορίζει το περιεχόμενο ή το parent */
       height: 250px;color: white;max-width: 1100px;
      text-align: center;
      
      
	
    }
    .hero-section h2 {
      font-size: 2em;
      margin-bottom: 10px;
    }
    .hero-section p {
      font-size: 1.1em;
      opacity: 0.9;
    }
/* Burger menu */
.burger{ display:none; flex-direction: column; gap:5px; cursor:pointer; transition: transform 0.3s ease; }
.burger div{ width:25px; height:3px; background:#fff; border-radius:2px; transition: all 0.3s ease; }

/* Mobile nav hidden αρχικά */
nav.center.mobile{
  flex-direction: column;
  background: var(--card);
  position: absolute;
  top: var(--nav-height);
  right:16px;
  border-radius:8px;
  overflow:hidden;
  max-height:0; /* links κρυφά στην αρχή */
  transition:max-height 0.3s ease;
  z-index:30;
}

/* Όταν ανοίγει το burger menu */
nav.center.mobile.open{
  max-height:500px; /* links εμφανίζονται */
}

/* Desktop: πάντα φαίνεται */
@media (min-width:701px){
  nav.center{
    display:flex !important;
    max-height:none;
    position:static;
    flex-direction:row;
    background:transparent;
  }
  .burger{ display:none; }
}

/* Main content */
main{padding-top:calc(var(--nav-height) + 20px);padding-bottom:calc(var(--player-height) + 20px);  min-height:100vh}
.container{max-width:var(--max-width); margin:0 auto; padding:20px}

/* Style switcher */
.style-switch{display:flex;gap:8px;justify-content:center;margin-bottom:18px;}
.style-switch button{padding:8px 12px;border-radius:8px;border:1px solid rgba(255,255,255,0.04);background:transparent;color:var(--muted);cursor:pointer;transition: background-color 0.3s, color 0.3s;}
.style-switch button.active{background:rgba(255,255,255,0.02);color:#fff;}

/* Grid of stations */
.radios-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(80px,1fr));gap:28px;align-items:center;justify-items:center}
/* Mobile grid: 2 columns και μικρότερα λογότυπα */
@media (max-width:600px){
  .radios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* λίγο μικρότερο κενό μεταξύ */
	 
  }
  .vinyl {
    width: 70px;
    height: 70px;
  }
  .vinyl img {
    width: calc(10% - 6px);
    height: calc(10% - 6px);
  }
}

/* Vinyl / circular logos */
.station{cursor:pointer;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px}
.vinyl{width:150px;height:150px;border-radius:50%;overflow:hidden;display:flex;align-items:center;justify-content:center;position:relative;box-shadow:0 8px 30px rgba(2,6,23,0.7);transition:transform .25s ease}
.vinyl img{width:calc(100% - 24px);height:calc(100% - 24px);object-fit:cover;border-radius:50%;display:block}
.vinyl .label{position:absolute;bottom:10px;left:50%;transform:translateX(-50%);font-size:13px;color:var(--muted);background:rgba(0,0,0,0.25);padding:4px 8px;border-radius:999px;background:#000000;}
.vinyl.playing{animation:spin 6s linear infinite;background:#EEFABE;}
@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}

/* Cards & footer */
.card{background:linear-gradient(180deg,var(--card), rgba(255,255,255,0.01));padding:18px;border-radius:12px;box-shadow:0 10px 30px rgba(2,6,23,0.6)}margin-top: 100px;
footer{padding:40px 20px;color:var(--muted);text-align:center;}

/* fixed player bottom */
.player-fixed{position:fixed;left:0;right:0;bottom:0;height:var(--player-height);display:flex;align-items:center;justify-content:center;padding:10px 16px;z-index:50;backdrop-filter:blur(8px); background:#000000;}
.player-inner{width:100%;max-width:var(--max-width);display:flex;align-items:center;gap:14px}
.player-left{display:flex;align-items:center;gap:12px;}
.play-btn{width:56px;height:56px;border-radius:12px;background:var(--accent);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;border:none;cursor:pointer;;}
.player-logo{width:64px;height:64px;border-radius:8px;overflow:hidden;background:#fff;flex-shrink:0}
.player-logo img{width:100%;height:100%;object-fit:cover;display:block}
.player-center{flex:1;text-align:center; color:#EEFABE;}
.player-title{font-size:16px;font-weight:700;}
.player-sub{font-size:12px;color:var(--muted)}
.player-right{display:flex;align-items:center;gap:8px}
.share-btn{padding:8px 12px;border-radius:10px;border:1px solid rgba(255,255,255,0.04);color: #000000;cursor:pointer;background:#000000;}

/* Share modal */
.modal{position:fixed;left:0;top:0;width:100%;height:100%;display:none;align-items:center;justify-content:center;background:rgba(2,6,23,0.6);z-index:200;}
.modal.active{display:flex}
.modal .panel{width:320px;background:var(--card);padding:18px;border-radius:12px}
.modal .panel h3{margin-top:0}
.modal .links{display:flex;flex-direction:column;gap:8px}
.modal .links a{background:#EEFABE;color: #000000;padding:10px;border-radius:8px;border:1px solid rgba(255,255,255,0.03);display:block}
.responsive-img {
  max-width: 100%;
  
  border-radius: 12px; /* προαιρετικό, για ομορφιά */
}
/* ===== MENU STYLE ===== */
nav.center ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.center li {
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  color: white;
  transition: 0.3s;
}
nav.center li:hover,
nav.center li.active {
  background-color: #FCFCCF;
  color: black;
}

/* Burger κουμπί (μόνο κινητά) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* --- MOBILE STYLES --- */
@media (max-width: 700px) {
  /* Το menu γίνεται κάθετο */
  nav.center {
    position: absolute;
    top: var(--nav-height);
    right: 16px;
    background: black;
    border-radius: 8px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  nav.center.open {
    max-height: 400px;
  }

  nav.center ul {
    flex-direction: column;
    gap: 0;
  }

  nav.center li {
    padding: 12px;
    text-align: center;
  }

  .burger {
    display: flex;
  }
}

main {
  padding-bottom: calc(var(--player-height) + 0px); /* 120px extra για να φαίνεται footer πλήρως */
}
	/* aqualizer */
.aqualizer {
	display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;        /* πιάνει όλο το διαθέσιμο πλάτος */
  max-width: 1100px;  /* προαιρετικό: όριο μέγιστου πλάτους */
  margin: 0 auto;     /* κέντρο στη σελίδα */
  padding: 10px;      /* λίγο κενό γύρω γύρω */
  box-sizing: border-box;
  
 
  
	height: 90px;
	text-align: center;
}
/* FOOTER STYLES */
.site-footer {
  width: 100%;
  background-color: var(--card);
  color: var(--muted);
  padding: 50px 16px;
  box-sizing: border-box;
  position: relative; 
  z-index: 10;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;margin-bottom: 80px;
}

.footer-left, .footer-right {
  flex: 1 1 200px;
  text-align: left;
}

.footer-right {
  text-align: right;
}

/* MOBILE STYLES */
@media (max-width: 700px) {
  .footer-left, .footer-right {
    flex: 1 1 100%;
    text-align: center;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;margin-bottom: 89px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap; /* για mobile */
}

.form-group {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--muted);
}

input, textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.2);
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.submit-btn {
  padding: 12px 20px;
  background-color: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #e04f53;
}

/* MOBILE */
@media (max-width: 700px) {
  .form-row {
    
  }
}
.form-success, .form-error {
  padding: 12px 16px;
  margin-bottom: 12px;
  border-radius: 8px;
  font-weight: 500;
  animation: fadeOut 0.5s ease-in-out forwards;
}
.form-success {
  background-color: #d4edda;
  color: #155724;
}
.form-error {
  background-color: #f8d7da;
  color: #721c24;
}
@keyframes fadeOut {
  0% {opacity: 1;}
  80% {opacity: 1;}
  100% {opacity: 0;}
}