:root {
  --bg: #0f0f10;
  --card: #0b0b0c;
  --muted: #9aa0a6;
  --accent: #8a8f9b;
  --glass: rgba(255, 255, 255, 0.03);
  --radius: 12px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial;
  background-color: #141423;
  color: #e6eef3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}

h1 {
  background: linear-gradient(180deg, #3a3f5c, #8086a4);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Clouds well, Chicle, "montserrat", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0.5px;
}

h3 {
  color: #F2F4F7;
  font-family: Clouds well, Chicle, "montserrat", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 40px;
}

h4 {
  background: linear-gradient(180deg, #3a3f5c, #8086a4);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Clouds well, Chicle, "montserrat", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif; font-size: 45px;
  letter-spacing: 0.5px; text-align: center; margin-top: 15px; margin-bottom: 15px;
}

h5 {
  background: linear-gradient(180deg, #3a3f5c, #8086a4);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Clouds well, Chicle, "montserrat", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif; font-size: 45px;
  letter-spacing: 0.5px; text-align: center; margin-top: -15px; margin-bottom: 15px;
}

h6 {
  background: linear-gradient(180deg, #3a3f5c, #8086a4);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Clouds well, Chicle, "montserrat", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif; font-size: 26px;
  letter-spacing: 0.5px; text-align: center; margin-top: -15px; margin-bottom: 15px;
}

.container {
  max-width: 1200px;
  margin: 28px auto;
  padding: 30px;
}

.site-header h1 {
  margin: 0;
  font-size: 45px;
  text-align: center;
}

.header-img {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center; /* vertical */
}

.tagline {
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.95rem;
  text-align: center;
}

.player-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--card);
  padding: 14px;
  border-radius: var(--radius);
  margin-top: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.cover {
  width: 110px;
  height: 110px;
  border-radius: 8px;
  background: linear-gradient(135deg, #222, #111);
  flex: 0 0 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
}

.spec-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--card);
  padding: 14px;
  border-radius: var(--radius);
  margin-top: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.clientele-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  background-color: transparent;
  padding: 14px;
  border-radius: var(--radius);
  margin-top: 18px;
  max-width: 1200px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.spec-meta {
  flex: 1;
  min-width: 0;
  padding: 0;
  margin: auto;
  text-align: center;
}
.player-meta {
  flex: 1;
  min-width: 0;
}

.track-info {
  margin-bottom: 10px;
}
.title {
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.artist {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.controls .btn-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: inherit;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.btn.icon {
  padding: 8px 10px;
  font-size: 1.05rem;
}
.btn.primary {
  background: var(--accent);
  color: #04160a;
  border: none;
  box-shadow: 0 6px 14px rgba(29, 185, 84, 0.12);
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.progress {
  flex: 1;
  appearance: none;
  height: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}
.progress::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.time {
  font-size: 0.85rem;
  color: var(--muted);
  min-width: 36px;
  text-align: center;
}

.volume {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.volume input {
  width: 110px;
}

.tracks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.track {
  background: var(--glass);
  padding: 12px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.track .meta {
  flex: 1;
  min-width: 0;
}
.track .meta strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track .meta span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
}

.contact {
  margin-top: 22px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px;
  border-radius: 8px;
  color: inherit;
  resize: vertical;
}
.contact-form textarea {
  min-height: 100px;
}
@media (max-width: 640px) {
  .player-card {
    flex-direction: column;
    align-items: stretch;
  }
  .cover {
    width: 100%;
    height: 160px;
  }
  .progress-wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .time {
    min-width: 0;
    text-align: left;
  }
}

p.p01 {
  background: linear-gradient(180deg, #8086a4, #3a3f5c);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -3em;
  font-family: Clouds well, Chicle, "montserrat", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1em;
}

.site-footer {
  background-color: #08080840; /* deep near‑black */
  padding: 20px;
  text-align: center;
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center; /* vertical centering */
  gap: 5px;
}
.footer-logo {
  width: 50px;
}
.footer-text p {
  margin: 0;
  text-align: left;
}
.footer-text a {
  color: #ccccff; /* soft cool highlight */
  text-decoration: none;
}

.two-column {
  display: flex;
  justify-content: center;      /* centers the pair horizontally */
  align-items: flex-start;
  gap: 80px;                    /* **cinematic spacing** */
  max-width: 1100px;            /* **framed layout width** */
  margin: 80px auto;            /* **centered container** */
  padding: 0 20px;              /* **breathing room** */
}

/* Equal column widths but not stretched */
.contact,
.booking {
  flex: 0 1 450px;              /* **balanced column sizing** */
}

/* Section Titles */
.section-title {
  font-size: 2.2rem;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #5E6484, #F2F4F7);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Shared Form Styles */
.contact-form input,
.contact-form textarea,
.booking-form input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: #141423;
  border: 1px solid #3A3F5C;
  color: #F2F4F7;
  border-radius: 6px;
  font-size: 1rem;
}

.booking-form {
  background: radial-gradient(circle at top, #3A3F5C 0%, #141423 85%);
  padding: 28px;
  border-radius: 10px;
  border: 1px solid #3A3F5C;
  box-shadow: 0 0 40px #141423; /* **subtle cinematic glow** */
}

.booking-form label {
  color: #F2F4F7;
  font-size: 0.95rem;
  margin-bottom: 6px;
  display: block;
}

.btn.primary {
  background: #3A3F5C;
  color: #F2F4F7;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.primary:hover {
  background: #5E6484;
}

.three-cats {
  display: flex;
  justify-content: center;          /* centers all 3 categories */
  align-items: flex-start;
  gap: 40px;                        /* spacing between groups */
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.cat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.cat h4 {
  color: #F2F4F7;
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.cat a {
  color: #8086A4;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s ease;
}

.cat a:hover {
  color: #F2F4F7;
}

/* Vertical divider lines */
.divider {
  width: 1px;
  background: #3A3F5C;
  height: 100%;
  opacity: 0.6;
}




@media (max-width: 800px) { .two-column { flex-direction: column; } }