/* ── Base ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  min-width: 375px;
  background: #0E0E11;
  color: #FFFFFF;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ── Shared ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

h2 {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: #aaa;
  margin-bottom: 50px;
  font-size: 18px;
}

.btn-primary {
  display: inline-block;
  background: #2D6BFF;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #1a56e6;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  border: 2px solid white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: white;
  color: #0E0E11;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-thumb {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.video-thumb:hover img {
  opacity: 0.8;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(45, 107, 255, 0.9);
  color: white;
  font-size: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-thumb:hover .play-btn {
  background: #1a56e6;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0E0E11;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid #1A1A1F;
}

.nav-logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #2D6BFF;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #2D6BFF;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  background: #1A1A1F;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
}

.hero-tagline {
  color: #2D6BFF;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-roles {
  color: #aaa;
  font-size: 18px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-video {
  flex: 1;
}

/* ── About ── */
.about {
  background: #1A1A1F;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}

.about-img img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 450px;
}

.about-text p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 16px;
}

.about-more {
  display: none;
}

.about-more.open {
  display: block;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.role-card {
  background: #0E0E11;
  border: 1px solid #2D6BFF;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

/* ── Shows ── */
.shows {
  background: #0E0E11;
}

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

.show-card {
  background: #1A1A1F;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.show-type {
  color: #2D6BFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.show-card h3 {
  font-size: 28px;
  font-weight: 900;
}

.show-venue {
  font-size: 16px;
  font-weight: 600;
}

.show-city {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
}

/* ── Featured ── */
.featured {
  background: #1A1A1F;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.featured-card {
  background: #0E0E11;
  border-radius: 12px;
  padding: 24px;
}

.featured-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

/* ── Music ── */
.music {
  background: #0E0E11;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.music-card {
  background: #1A1A1F;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.music-icon {
  font-size: 36px;
}

.music-card h3 {
  font-size: 20px;
  font-weight: 700;
}

.music-card p {
  color: #aaa;
  font-size: 15px;
  flex: 1;
}

/* ── Photos ── */
.photos {
  background: #1A1A1F;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.photo-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s;
}

.photo-card img:hover {
  transform: scale(1.02);
}

/* ── Contact ── */
.contact {
  background: #0E0E11;
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  background: #1A1A1F;
  border: 1px solid #333;
  border-radius: 6px;
  color: white;
  font-size: 15px;
  font-family: 'Open Sans', Arial, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2D6BFF;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* ── Footer ── */
.footer {
  background: #0E0E11;
  border-top: 1px solid #1A1A1F;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-size: 20px;
  font-weight: 700;
  color: #2D6BFF;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}

.social-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #2D6BFF;
}

.social-links span {
  color: #444;
}

.footer-copy {
  color: #555;
  font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: #0E0E11;
    padding: 20px 40px;
    gap: 20px;
    border-bottom: 1px solid #1A1A1F;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    flex-direction: column;
    padding: 50px 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 28px;
  }
}
