@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

html {
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

body {
  background-color: #F7F1EC;
  color: #ED205C;
  font-family: "Unbounded", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  margin: 0 auto;
}

a {
  color: #ED205C;
  text-decoration: none;
}

p {
  font-size: 18px;
  line-height: 1.75;
}

@media only screen and (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

h1, h2, h3, h4 {
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.4;
}

h1 {
  font-size: 96px;
  line-height: 1;
  z-index: 2;
}

@media only screen and (max-width: 1600px) {
  h1 {
    font-size: 72px;
  }
}

@media only screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}

h4 {
  font-size: 32px;
}

@media only screen and (max-width: 767px) {
  h4 {
    font-size: 20px;
  }
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px dashed #ED205C;
  margin: 1em 0;
  padding: 0;
}

.container {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1352px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  z-index: 3;
  width: 100%;
  background-color: #F7F1EC;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

header .container .logo {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
}

hero {
  text-align: center;
}

hero .container {
  max-width: 64rem;
  padding: 6rem 2rem;
  position: relative;
}

hero .container .icon-guitar {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
}

hero .container .icon-disco {
  position: absolute;
  right: 3rem;
  bottom: 10rem;
}

@media only screen and (max-width: 767px) {
  hero .container {
    max-width: 64rem;
    padding: 6rem 2rem 3rem 2rem;
  }

  hero .container .icon-guitar, hero .container .icon-disco {
    display: none;
  }
}

.event-details {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
  max-width: 32rem;
  margin: 0 auto;
  z-index: 2;
}

.event-details .icon-star {
  width: 1rem;
}

@media only screen and (max-width: 767px) {
  .event-details .icon-star {
    display: none;
  }
}

.event-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .25rem;
}

.event-item span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  flex-grow: 1;
}

@media only screen and (max-width: 767px) {
  .event-item span {
    font-size: 10px;
  }
}

.event-item .highlight {
  font-size: 32px;
  font-weight: 900;
  flex-grow: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-item img {
  flex-grow: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .event-item .highlight {
    font-size: 20px;
  }

  .event-item img {
    max-width: 60px;
  }
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 70%;
  background-color: #FFB6CD;
  max-width: 1600px;
  margin: 0 auto;
}

@media only screen and (max-width: 1600px) {
  .section-intro {
    grid-template-columns: 1fr 60%;
  }
}

@media only screen and (max-width: 767px) {
  .section-intro {
    display: flex;
    flex-direction: column;
  }
}

.section-intro .text {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

@media only screen and (max-width: 767px) {
  .section-intro .text {
    padding: 2rem;
  }
}

.section-intro .text h2 {
  color: #ED205C;
  font-size: 24px;
}

@media only screen and (max-width: 767px) {
  .section-intro .text h2 {
    font-size: 20px;
  }
}

.section-intro img {
  aspect-ratio: 4/3;
  object-fit: cover;
  max-width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1600px) {
  .section-intro img {
    aspect-ratio: 6/4;
  }
}

@media only screen and (max-width: 767px) {
  .section-intro img {
    order: -1;
  }
}

.section-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 0;
}

@media only screen and (max-width: 767px) {
  .section-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 0;
  }
}

.section-text .text {
  max-width: 40ch;
}

.section-text .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
}

.section-text .heading h4 {
  margin-bottom: 0;
}

.section-text .heading .icon {
  width: 6rem;
  height: 6rem;
}

@media only screen and (max-width: 767px) {
  .section-text .heading {
    gap: 1rem;
  }
  
  .section-text .heading h4 {
    margin: 0;
  }
}

.section-text .heading .image {
  object-fit: cover;
  width: 100%;
  max-width: 20vw;
}

@media only screen and (max-width: 767px) {
  .section-text .heading .image {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .section-text .heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .section-text .heading .icon {
    justify-self: flex-end;
    width: 4rem;
    height: 4rem;
  }

  .section-text .heading .image {
    grid-column: 1/3;
    order: 3;
  }
}

footer {
  padding: 4rem;
}

footer p {
  text-align: center;
  font-size: 12px;
}

.c-link {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.c-link .icon {
  width: 1rem;
  height: .75rem;
}