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

body {
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  color: #f1f1f1;
  line-height: 1.6;
  
}

strong {

    color: #b91d1d;
}



/* Navigation */
header {
  background: #000000;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}



.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: bold;
  font-size: 1.3rem;
  color: #f1f1f1;
}

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

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #f1f1f1;
  transition: color 0.3s ease;
}

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

/* Hero */
.hero {
  background: url('assets/hero2.jpg') left/cover no-repeat;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
    text-shadow: #000000 5px 5px ;
}

.hero h1 {
  font-size: 2.5rem;

}

.hero p {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  color: #ffffff;

}

/* Work */
.work {
  padding: 3rem 2rem;
}

.rundown a {
  color: #b91d1d;
  text-decoration: none;
  font-weight: bold;
}

.audio-samples {
  display: flex;
  flex-wrap: wrap;   /* ✅ allow items to wrap to new lines */
  gap: 2rem;
  margin-top: 1rem;
}


.sample p {
  margin-bottom: 0.5rem;
}

.photos-inline {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.photos-inline img {
  width: 48%;
  border-radius: 8px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.overlay img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* Close Button */
.overlay .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Navigation Arrows */
.overlay .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 0 15px;
}

.overlay .arrow.left {
  left: 20px;
}
.overlay .arrow.right {
  right: 20px;
}


/* Music */
.music-section {
  padding: 3rem 2rem;
}

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

.music-card {
  background: #1e1e1e;
  padding: 1rem;
  border-radius: 8px;
}

/* Videos */
.video-section {
  padding: 3rem 2rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 1.5rem;
}

.video-card iframe {
  width: 100%;
  height: 220px;
  border-radius: 8px;
}

/* Contact */
.contact {
  padding: 3rem 2rem;
  text-align: center;
  font-size: 20px;
  background: url(assets/_AAA0569.JPG) right/cover no-repeat;
  text-shadow: #000000 2px 2px;
}

h2 {

    color: #b91d1d;
}

.contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 1rem;
  margin-top: 15px;
  background: #0d0d0d;
  font-size: 0.9rem;
}

.rundown {
  margin-top: 3rem;
  padding: 2rem;
  background: #1e1e1e;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.rundown h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #b91d1d; /* accent color */
}

.rundown p {
  margin-bottom: 1rem;
  color: #ddd;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Navbar: switch to hamburger */
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #1e1e1e;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 1rem;
    border-left: 2px solid #b91d1d;
  }

  .nav-links li {
    margin: 15px 0;
  }

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

  .navbar {
    position: relative;
  }

/* Default hide on desktop */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}
}

/* Default hide hamburger (desktop only) */
/* Default hide on desktop */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Show on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #1e1e1e;
    flex-direction: column;
    width: 220px;
    display: none; /* stays hidden until toggled */
    padding: 1rem;
    border-left: 2px solid #b91d1d;
  }

  .nav-links li {
    margin: 15px 0;
  }

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


/* Hero text smaller */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Audio samples stack */
@media (max-width: 768px) {
  .audio-samples {
    flex-direction: column;
  }
}

/* Inline photos stack */
@media (max-width: 768px) {
  .photos-inline {
    flex-direction: column;
  }

  .photos-inline img {
    width: 100%;
  }
}

/* Video responsive fix */
.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}



