@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');


body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

p {
  line-height: 1.6;
}


header {
  background-color: black;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
}

nav {
  background-color: #a9a9a9;
  padding: 1rem;
  text-align: center;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
}

nav a:hover {
  color: #6f2dbd;
}


.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  background-color: #6f2dbd;
  color: white;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  padding: 1rem;
  text-align: center;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-top: 1px solid #ddd;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  margin: 0.5rem 0;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
}

.mobile-menu a:hover {
  color: #6f2dbd;
}

.mobile-menu .close-btn {
  background: none;
  border: none;
  color: #6f2dbd;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}


.carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 300px;
  margin-bottom: 2rem;
}

.carousel-track {
  display: flex;
  animation: scroll 60s linear infinite;
}

.carousel img {
  height: 300px;
  width: auto;
  flex-shrink: 0;
  margin-right: 1rem;
  border-radius: 8px;
}

@keyframes scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}


main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

main h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.image-section {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}


.rsvp-link {
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
}

.rsvp-link:hover {
  color: #6f2dbd;
}



footer {
  margin-top: 3rem;
  background-color: #a9a9a9;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}


.artist-intro {
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
}

.artist-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.artist-feature img {
  height: 300px;
  width: auto;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.artist-feature p {
  max-width: 700px;
  text-align: center;
}


.artist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.artist-card {
  width: 250px;
  text-align: center;
}

.artist-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.slideshow-container {
  position: relative;
  max-width: 300px;
  margin: 40px auto;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 6px;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

.prev { left: -40px; }
.next { right: -40px; }

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  text-align: center;
}

.lightbox img {
  max-width: 80%;
  max-height: 70%;
  margin-top: 5%;
}

#lightbox-caption {
  color: white;
  margin-top: 15px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 28px;
  cursor: pointer;
}