@import url('https://fonts.googleapis.com/css2?family=Chango&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shrikhand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');


body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f5f5f5;
}
.description{
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  color:black;
  font-size: 15px;
  font-weight: 501;
}
.container{
  background: url('Night\ Fest.jpg') center no-repeat;
  background-size: cover;
  padding: 2rem;
  border: #f8f8f6 24px solid;
  box-shadow:0 6px 15px rgba(0,0,0,1)
  
}
/* Flyer */
.flyer {
  width: 80vw;
  max-width: 800px;
  margin: 20px auto;
  padding: 24px;
  background: #fff url("background.jpg") repeat;
  border: 6px solid #111;

  box-shadow:
    0 0 25px rgba(255, 0, 100, 0.6),
    0 0 50px rgba(0, 150, 255, 0.5),
    0 0 90px rgba(0, 255, 180, 0.4);

  animation: glowShift 8s ease-in-out infinite alternate;
}
/* Header */
.flyer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flyer-title {
  margin: 0;
  font-family: 'Chango', cursive;
  font-size: 2rem;
  text-align: center;
}

.flyer-logo img {
  max-height: 3rem;
}

.flyer-divider {
  height: 2px;
  background: #111;
  margin: 20px 0;
}

/* Hero */
.hero {
  text-align: center;
  padding:0rem  2vw;
  color: #fff;
  position: relative;
}

.hero-content {
  position: relative;
}

#hero-text {
  font-size: 25px;
  text-shadow:
    3px 3px 0 #000,
    6px 6px 0 rgba(0,0,0,0.4);
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: center;
  margin-top: 18rem;
  font-size: 30px ;
}

.btn {
  padding: 0.5rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #f39c12, #e74c3c);
  color: #fff;
  text-decoration: none;
}

/* More info */
.djs {
  display: flex;
  font-family: 'Shrikhand', cursive;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
    justify-content: center;  /* center horizontally */
  align-items: center; 
  color: white;
}
.djs-names{
  margin: 12px 0px;
  width: auto;
  
}
.djs-divider{
  width: 2rem;

}

/* Info rows */
.flyer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid #111;
}

.icon {
  font-size: 1.6rem;
  min-width: 32px;
  text-align: center;
  color: #ff0066;
}

.info-text h3,
.info-text p {
  margin: 0;
  text-align: left;
}
@media (max-width: 900px) {
  .djs {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .djs-divider{
    display: none;
  }
  .buttons {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
  font-size: 30px ;
}
}