/* Global Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #f2f2f2;
  line-height: 1.6;
}

a {
  color: #7A0000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  color: #f2f2f2;
}

/* Navigation */
nav {
  background: #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 100%;
  width: 100%;
}

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

.nav-links li a {
  color: #f2f2f2;
  font-weight: bold;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.hero-text {
  max-width: 90%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero .cta-buttons {
  margin-top: 1.5rem;
}

.btn {
  background: #7A0000;
  color: #f2f2f2;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 30px;
  margin: 0 0.5rem;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background: #1a1a1a;
}

/* About Section */
.about {
  padding: 4rem 2rem;
  background: #1a1a1a;
  text-align: center;
}

/* roster */
.roster {
  padding: 4rem 2rem;
  text-align: center;
}

.dj-grid {

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.dj-card {

  flex: 1 1 300px;
  /* Allows responsiveness */
  max-width: 360px;
  /* Prevents overgrowth on large screens */
  padding: 1rem;
  background-color: #1a1a1a;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  filter: grayscale(100%);
}

.dj-card:hover {
  transform: scale(1.02);
  filter: grayscale(0%);
}

.dj-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
}

.dj-press-photo {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
  margin: 0 auto 1rem auto;
}

.container {
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.lang-btn {
  background: none;
  border: none;
  color: #f2f2f2;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  padding: 0;
}

.lang-btn:hover {
  text-decoration: underline;
}


/* Booking Section */
.booking {
  padding: 4rem 2rem;
  background: #1a1a1a;
  text-align: center;
}

/* Story Section */
.story {
  padding: 4rem 2rem;
  background: #0D0D0D;
  text-align: center;
}

.team-photo {
  width: 100%;
  max-width: 150px;
  display: left;
  margin: 2rem auto;
  border-radius: 12px;
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  background: #0f0f0f;
  text-align: center;
}

.social-links.icon-style {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-left: 0;
  list-style: none;
}

.social-links.icon-style li a img {
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links.icon-style li a:hover img {
  transform: scale(1.1);
  opacity: 0.8;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.footer a {
  margin: 0 1rem;
  color: #f2f2f2;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #1a1a1a;
  color: white;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  width: 48px;
  height: 48px;
  transition: transform 0.2s ease, opacity 0.2s ease;

}

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

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links li a:hover {
  text-decoration: underline;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    margin: 0.5rem 0;
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #1a1a1a;
    flex-direction: column;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 1000%;
    padding: 1rem 0;
  }

  .nav-links li {
    text-align: center;
    padding: 1rem 0;
  }

  .dj-card {
    filter: grayscale(0%);
  }

  .dj-card:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
  }

  .dj-card p {
    color: #aaa;
  }

  .dj-card h4 {
    color: #aaa;
  }
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 1rem; */
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 1rem 0;
}

.carousel-viewport {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 1rem;
}

.dj-card {
  flex: 0 0 auto;
  width: 220px;
  background: #1a1a1a;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 1rem;
}
 .dj-card p {
    color: #aaa;
  }

.carousel-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #f2f2f2
}