/* ------------------------------
   Morgan Empire Production Theme
   Clean • Minimal • Tactical
--------------------------------*/

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top, #151515 0, #050505 55%, #000 100%);
  color: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

section {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

h1, h2 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: radial-gradient(circle at top, #1b1b1b 0, #050505 60%);
  border-bottom: 1px solid #222;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin: 16px 0 30px;
}

/* Logo Lockup */
.mep-logo {
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  letter-spacing: 2px;
}

.mep-parent {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.75;
  letter-spacing: 2.5px;
  margin-bottom: 6px;
}

.mep-main {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #6a4dfc, #00eaff);
  -webkit-background-clip: text;
  color: transparent;
}

.mep-sub {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  margin-top: -4px;
}

/* Toggle */
.toggle-wrapper {
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
}

.toggle-btn {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f5f5f5;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.toggle-btn.active {
  background: linear-gradient(90deg, #6a4dfc, #00eaff);
  border-color: transparent;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.site-footer {
  padding: 26px 20px;
  border-top: 1px solid #222;
  text-align: center;
}

.site-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.75;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.site-footer a {
  color: inherit;
}

/* Neon Button */
.neon {
  background: linear-gradient(90deg, #6a4dfc, #00eaff);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 0 12px rgba(0, 234, 255, 0.4);
}

.neon:hover {
  box-shadow: 0 0 22px rgba(0, 234, 255, 0.8);
  transform: translateY(-2px);
}

/* Glassmorphism Container */
.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

/* ------------------------------
   AUDIO SAMPLES
--------------------------------*/
.samples {
  margin-top: 40px;
}

.audio-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.audio-player {
  flex: 1 1 260px;
}

.track-title {
  font-size: 1rem;
  margin-bottom: 10px;
  opacity: 0.8;
}

.controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.play-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.seek {
  width: 100%;
  accent-color: #00eaff;
}

/* Hide native audio UI */
audio {
  display: none;
}

/* ------------------------------
   BOOKING FORM
--------------------------------*/
.booking h2 {
  margin-bottom: 20px;
}

.booking form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking input,
.booking textarea {
  width: 100%;
  padding: 14px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #222;
  border-radius: 6px;
  color: #f5f5f5;
  font-size: 1rem;
}

.booking textarea {
  min-height: 120px;
  resize: vertical;
}

.booking label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 600px) {
  .mep-main {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .glass {
    padding: 24px;
  }
}
