/* Change the primary accent color here if you want */
:root {
  --bg: #0a0d14;
  --card: #101624;
  --text: #e7ecf5;
  --muted: #9aa4b8;
  --accent: #4fd1c5;
  --border: #1c2536;
  --glow: rgba(79, 209, 197, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 10px 14px;
  background: var(--accent);
  color: #031521;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  z-index: 15;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  box-shadow: 0 12px 30px rgba(79, 209, 197, 0.35);
}

a { color: inherit; text-decoration: none; }

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 13, 20, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  font-weight: 500;
}

nav a {
  padding: 8px 10px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

nav a:hover {
  background: var(--card);
  color: var(--accent);
}

nav a:focus-visible,
.cta-btn:focus-visible,
.social a:focus-visible,
.submit-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 30px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 10px 0;
  letter-spacing: 0.2px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 560px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  background: var(--accent);
  color: #031521;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(79, 209, 197, 0.25);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(79, 209, 197, 0.35);
}

.hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #0f1726;
  box-shadow: 0 18px 60px rgba(10, 18, 38, 0.35);
}

section h2 {
  font-size: 26px;
  margin: 0 0 16px;
}

.text-block {
  color: var(--muted);
  max-width: 760px;
}

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

.card {
  background: linear-gradient(145deg, var(--card), #0c1220);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(3, 12, 24, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(3, 12, 24, 0.55);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 20%, var(--glow), var(--card));
  border: 1px solid var(--border);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.social a:hover {
  transform: translateY(-2px);
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(3, 12, 24, 0.45);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(3, 12, 24, 0.4);
}

label {
  display: block;
  font-weight: 500;
  margin: 12px 0 6px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0f1726;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 209, 197, 0.2);
}

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

.submit-btn {
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #0f131a;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(79, 209, 197, 0.25);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(79, 209, 197, 0.3);
}

footer {
  border-top: 1px solid var(--border);
  padding: 24px 20px;
  text-align: center;
  color: var(--muted);
  background: rgba(10, 13, 20, 0.9);
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}

@media (max-width: 720px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .brand {
    width: 100%;
    justify-content: space-between;
  }
}
