
:root{
  --blue:#23b7c7;
  --green:#84c59e;
  --cream:#f5f0e7;
  --yellow:#ffe284;
  --mustard:#f8af02;
  --orange:#f18f34;
  --deeporange:#e95f32;
  --red:#ad1b17;
  --black:#0e0e0e;
}

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

body{
  font-family:'Space Grotesk', sans-serif;
  background:var(--cream);
  color:#111;
  line-height:1.5;
}

.hero{
  min-height:100vh;
  padding:2rem 5%;
  background:
    linear-gradient(135deg,var(--blue),var(--green),var(--orange),var(--deeporange));
  color:white;
  position:relative;
  overflow:hidden;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:5rem;
}

.logo{
  font-size:1.5rem;
  font-weight:700;
  letter-spacing:1px;
}

.menu{
  display:flex;
  gap:2rem;
}

.menu a{
  color:white;
  text-decoration:none;
  opacity:0.9;
}

.hero-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:3rem;
}

.eyebrow{
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:1rem;
  opacity:0.9;
}

h1{
  font-size:7rem;
  line-height:0.9;
}

h2{
  font-family:'Spectral', serif;
  font-weight:300;
  font-size:2.4rem;
  margin:1rem 0;
}

.intro{
  max-width:500px;
  margin:2rem 0;
  font-size:1.1rem;
}

.buttons{
  display:flex;
  gap:1rem;
}

.btn{
  padding:1rem 1.8rem;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
}

.primary{
  background:white;
  color:black;
}

.secondary{
  border:1px solid white;
  color:white;
}

.gradient-circle{
  width:550px;
  height:550px;
  border-radius:50%;
  background:
    radial-gradient(circle at top,var(--yellow),var(--orange),var(--red));
  filter:blur(5px);
  opacity:0.95;
  margin:auto;
}

section{
  padding:6rem 5%;
}

.dark{
  background:#0e0e0e;
  color:white;
}

.section-header p{
  text-transform:uppercase;
  letter-spacing:2px;
  color:var(--orange);
  margin-bottom:1rem;
}

.section-header h3{
  font-size:3rem;
  max-width:600px;
  font-family:'Spectral', serif;
  font-weight:400;
  margin-bottom:3rem;
}

.artist-grid,
.article-grid,
.program-grid{
  display:grid;
  gap:2rem;
}

.artist-grid{
  grid-template-columns:repeat(3,1fr);
}

.artist-card{
  padding:2rem;
  border-radius:24px;
  min-height:380px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.artist-image{
  flex:1;
}

.artist-card h4{
  font-size:2rem;
}

.blue{background:var(--blue);}
.orange{background:var(--orange);}
.red{background:var(--deeporange);}

.article-grid{
  grid-template-columns:repeat(3,1fr);
}

article{
  background:white;
  padding:2rem;
  border-radius:18px;
}

article span{
  color:var(--deeporange);
  font-size:0.8rem;
  letter-spacing:1px;
}

article h4{
  margin:1rem 0;
  font-size:1.8rem;
  font-family:'Spectral', serif;
}

.program-grid{
  grid-template-columns:repeat(5,1fr);
}

.program{
  padding:3rem 1rem;
  border-radius:18px;
  text-align:center;
  color:white;
  font-weight:700;
}

.turquoise{background:var(--blue);}
.green{background:var(--green);}
.yellow{background:var(--mustard);}
.program.orange{background:var(--orange);}
.program.red{background:var(--red);}

.nightowl{
  min-height:50vh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(to right,rgba(0,0,0,0.85),rgba(173,27,23,0.7));
}

.nightowl h3{
  font-size:4rem;
  max-width:700px;
  font-family:'Spectral', serif;
  font-weight:300;
}

footer{
  background:black;
  color:white;
  padding:4rem 5%;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:2rem;
}

footer ul{
  list-style:none;
}

@media(max-width:900px){

  .hero-content,
  .artist-grid,
  .article-grid,
  .program-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:4rem;
  }

  .menu{
    display:none;
  }

  .gradient-circle{
    width:320px;
    height:320px;
  }

  .nightowl h3{
    font-size:2.5rem;
  }
}
