/* ==========================================================================
   KEDA — Live Party Band · styles.css
   Palette: "Midnight Stage" — deep blue / champagne gold / warm off-white
   Fonts: Montserrat (headings) + Inter (body) — full Greek script support
   Mobile-first. No frameworks.
   ========================================================================== */

:root {
  --bg: #0B1530;            /* deep midnight blue — primary background */
  --bg-alt: #122148;        /* ink blue — alternating section surface   */
  --bg-card: #16264f;       /* card surface                             */
  --gold: #E8B84B;          /* champagne gold — CTA / accent            */
  --gold-soft: #f0cd7e;
  --text: #F5F1E8;          /* warm off-white                           */
  --muted: #93A0BD;         /* blue-grey muted text                     */
  --line: rgba(232, 184, 75, 0.18);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 14px;
  --font-head: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --max-w: 1120px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.9rem, 5.4vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.6vw, 2.3rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Language toggle mechanics ----------
   <html data-lang="en"> shows .en, hides .el — and vice versa. */
html[data-lang="en"] .el { display: none !important; }
html[data-lang="el"] .en { display: none !important; }

/* ---------- Layout helpers ---------- */
.container { width: min(var(--max-w), 92%); margin-inline: auto; }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section.alt { background: var(--bg-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.lead { color: var(--muted); font-size: 1.06rem; max-width: 46rem; }

/* ---------- Signature element: equalizer motif ---------- */
.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}
.eq span {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  height: 30%;
  animation: eq-bounce 1.1s ease-in-out infinite;
}
.eq span:nth-child(2) { animation-delay: 0.15s; height: 70%; }
.eq span:nth-child(3) { animation-delay: 0.3s;  height: 100%; }
.eq span:nth-child(4) { animation-delay: 0.45s; height: 55%; }

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.45); }
  50%      { transform: scaleY(1); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: #16213e;
}
.btn-gold:hover {
  background: var(--gold-soft);
  color: #16213e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 184, 75, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(245, 241, 232, 0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 21, 48, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 241, 232, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  color: var(--text);
}
.brand:hover { color: var(--text); }

.main-nav { display: none; }
.main-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0 0.75rem;
}
.main-nav a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid rgba(245, 241, 232, 0.25);
  border-radius: 999px;
  overflow: hidden;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
}
.lang-toggle button[aria-pressed="true"] {
  background: var(--gold);
  color: #16213e;
}

.header-cta { display: none; }

.nav-burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.9rem 4%;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  border-top: 1px solid rgba(245, 241, 232, 0.06);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  padding: 4.5rem 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
              rgba(11, 21, 48, 0.55) 0%,
              rgba(11, 21, 48, 0.78) 55%,
              var(--bg) 100%);
}
.hero-content { max-width: 46rem; }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--gold) 20%, var(--gold-soft) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: var(--text);
  opacity: 0.92;
  font-size: 1.06rem;
  max-width: 42rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 1.1rem;
}
.hero-trust {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- Showreel ---------- */
.showreel-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.showreel-frame iframe,
.showreel-frame video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.showreel-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(11,21,48,0.55), rgba(11,21,48,0.85)),
    url("assets/keda-band-wide-01.jpg") center/cover no-repeat;
}
.play-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.4rem;
}

/* ---------- About ---------- */
.about-grid { display: grid; gap: 2rem; }
.about-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

/* ---------- Cards (events, formats, direct) ---------- */
.card-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr;
}
.card {
  background: var(--bg-card);
  border: 1px solid rgba(245, 241, 232, 0.07);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}
.card h3 { color: var(--gold); margin-bottom: 0.4rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.97rem; }

.badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #16213e;
  background: var(--gold);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ---------- Repertoire ---------- */
.rep-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.rep-list li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  color: var(--muted);
}
.rep-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-1px);
}
.rep-list strong { color: var(--text); }

/* ---------- Pricing note ---------- */
.pricing-note {
  margin-top: 1.8rem;
  background: linear-gradient(180deg, rgba(232,184,75,0.07), rgba(232,184,75,0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.pricing-note strong { color: var(--text); }
.pricing-note p:last-child { margin-bottom: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  background: var(--bg-card);
}
.gallery-grid .span-2 { grid-column: span 2; }
.gallery-grid .span-2 img { aspect-ratio: 16 / 8; }

/* ---------- Testimonials ---------- */
.testimonial-empty {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--muted);
  max-width: 40rem;
  margin-inline: auto;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 48rem; }
.faq-list details {
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
  padding: 0.4rem 0;
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 0.8rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { color: var(--muted); padding-bottom: 0.8rem; }

/* ---------- Booking form ---------- */
.booking-wrap {
  display: grid;
  gap: 2.2rem;
}
.booking-form {
  background: var(--bg-card);
  border: 1px solid rgba(245, 241, 232, 0.08);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1rem; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 0;
  border-color: var(--gold);
}
.field textarea { min-height: 120px; resize: vertical; }

.privacy-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.9rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
}
.form-status.ok {
  display: block;
  background: rgba(94, 200, 130, 0.12);
  border: 1px solid rgba(94, 200, 130, 0.4);
  color: #bfe9cd;
}
.form-status.err {
  display: block;
  background: rgba(232, 108, 75, 0.12);
  border: 1px solid rgba(232, 108, 75, 0.4);
  color: #f3cabb;
}

/* honeypot */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- Contact / footer ---------- */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.7rem;
  font-size: 1.02rem;
}
.contact-list a { font-weight: 600; }

.site-footer {
  background: #080f22;
  padding: 2rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.site-footer .brand { justify-content: center; margin-bottom: 0.6rem; font-size: 1.05rem; }

/* ---------- Floating mobile CTA ---------- */
.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, 120%);
  z-index: 60;
  width: calc(100% - 2rem);
  max-width: 420px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.floating-cta.visible { transform: translate(-50%, 0); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .eq span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .floating-cta { transition: none; }
}

/* ---------- Tablet & up ---------- */
@media (min-width: 720px) {
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 5fr 6fr; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .span-2 { grid-column: span 2; }
  .booking-wrap { grid-template-columns: 5fr 7fr; align-items: start; }
  .form-grid.two-col { grid-template-columns: 1fr 1fr; }
  .form-grid.two-col .field.full { grid-column: 1 / -1; }
}

/* ---------- Desktop ---------- */
@media (min-width: 980px) {
  .main-nav { display: block; }
  .header-cta { display: inline-block; }
  .nav-burger, .mobile-nav { display: none !important; }
  .floating-cta { display: none; }
}

/* ==========================================================================
   ADDITIONS — v1.1
   ========================================================================== */

/* ---------- Clickable format cards ---------- */
.format-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.format-card:hover,
.format-card:focus-visible {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.format-card p { flex: 1; }
.format-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
}
.format-card:hover .format-link { color: var(--gold-soft); }

/* ---------- Trusted-by logo section ---------- */
.logo-group-title {
  margin: 2.2rem 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.logo-chip {
  background: #FBF9F4;
  border-radius: 12px;
  min-height: 88px;
  padding: 0.9rem 1.1rem;
  display: grid;
  place-items: center;
}
.logo-chip img {
  max-height: 54px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.logo-disclaimer {
  margin-top: 1.4rem;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (min-width: 720px) {
  .logo-strip { grid-template-columns: repeat(4, 1fr); }
  .logo-chip { min-height: 96px; }
  .logo-chip img { max-height: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  .format-card { transition: none; }
}
