:root {
  --title-font: "Playfair Display", serif;
  --secondary-font: "Roboto", sans-serif;
  --caption-font: "Poppins", sans-serif;
}

body {
  margin: 0;
  color: #272044;
  line-height: 1;
  letter-spacing: 0%;
}

.hero-container {
  max-width: 1600px;
}

.section-container,
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-background-img {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(/images/hans-studio.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

header {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(/images/hans_zimmer.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 150px 0;
}

h1 {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 128px;
  margin: 20px;
}

h2 {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 40px;
  margin: 0;
}

.white {
  color: white;
  margin-bottom: 40px;
}

h3 {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 48px;
  margin: 0;
}

.section-headings {
  text-align: center;
  padding: 30px 10px;
}

section h4 {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}

h5 {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
}

section p,
ul {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 16px;
}

.subtitle {
  font-family: var(--caption-font);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.subtitle-colour {
  color: #e5a93b;
  background: #faeed8;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
}

.subtitle-bw {
  color: white;
  background: #222222;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 8px;
}

.bio {
  font-family: var(--secondary-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}

.img-responsive {
  width: 100%;
}

.img-column-portrait {
  background: black;
}

.img-card {
  display: block;
  margin: 0 auto;
  filter: brightness(110%);
}

button {
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0px;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  margin: 30px 0;
  background: #e5a93b;
  color: white;
}

.btn-card {
  display: block;
  margin: 0 auto;
  padding: 16px 32px;
}
.grid {
  display: grid;
  grid-gap: 30px;
}

.grid-2-columns {
  grid-template-columns: 1fr 1fr;
}

.grid-3-columns {
  grid-template-columns: repeat(3, 1fr);
  margin: 0 20px;
  align-items: start;
}

.grid-3-columns-2-rows {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  margin: 70px 20px;
}

.card {
  margin-bottom: 100px;
  border-radius: 15px;
  overflow: hidden;
}

.card-background {
  background: #fafafa;
  padding: 24px 32px;
}

section ul {
  list-style: "- ";
  padding: 10px;
  margin-top: 0;
}

.table-container {
  margin: 0 auto;
}

.awards-table {
  border: 1px solid #e5a93b;
  margin: 0 auto;
}

.awards-table th {
  font-family: var(--title-font);
  font-size: 24px;
  text-align: left;
  padding: 16px 24px;
}

.awards-table td {
  font-family: var(--secondary-font);
  padding: 16px 24px;
  border-top: 1px solid #e5a93b;
}

.embed {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  aspect-ratio: 1/1;
}

hr {
  margin: 0 -25px;
  border: none;
  border-top: 0.5px solid #e5e5e5;
}

footer {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(/images/hans-zimmer-band.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 3fr 3fr;
  grid-gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

footer h4 {
  font-family: var(--title-font);
  font-size: 20px;
}

footer ul {
  font-family: var(--secondary-font);
  list-style: none;
  line-height: 2;
  margin-left: 0;
  padding-left: 0;
}

footer p {
  font-family: var(--secondary-font);
  line-height: 1.5;
}

footer a {
  text-decoration: none;
  color: white;
}

@media (max-width: 576px) {
  header {
    padding: 100px 0;
  }
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 15px;
  }
  .caption {
    font-size: 16px;
  }

  .img-column-portrait {
    background: none;
    border-radius: 10px;
    overflow: hidden;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}

@media (max-width: 768px) {
  .grid-2-columns {
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin: 10px;
  }

  .grid-3-columns {
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin: 20px;
  }

  .grid-3-columns-2-rows {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .embed {
    height: auto;
    width: auto;
  }

  .table-container {
    margin: 20px;
    overflow-x: auto;
  }
}
