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

h1, h2, h3, h4, h5, h6, p, li, a {
  font-family: "oso-sans-variable", sans-serif;
  font-variation-settings: "wdth" 70, "wght" 200;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: #C4A484;
}
a:hover {
  color: #C04000;
}

body {
  background-color: #cebda9;
}

header {
  background-image: url("../img/Vinoz_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  height: 150vw;
}
header .left-header {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1em;
  display: -ms-grid;
  display: grid;
  grid-tempalte-columns: 1fr;
  gap: 2em;
}
header .mid-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .right-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
header nav a {
  font-size: 1.4em;
  font-weight: bold;
}
header .lower-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 75vh;
}
header .lower-header img {
  width: 200px;
}

article#bios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
article#bios .bio-gaynor {
  background-image: url("../img/Gaynor-sm.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  aspect-ratio: 3/2;
  opacity: 0;
  display: none;
  padding: 2em;
}
article#bios .bio-gaynor img {
  width: 100%;
}
article#bios .bio-gaynor.open {
  opacity: 1;
  display: block;
}
article#bios .bio-lisa {
  background-image: url("../img/Lisa-sm.webp");
  background-size: cover;
  background-position: 50%;
  position: relative;
  opacity: 0;
  display: none;
  aspect-ratio: 3/2;
}
article#bios .bio-lisa img {
  width: 100%;
}
article#bios .bio-lisa.open {
  opacity: 1;
  display: block;
}
article#bios .bio-maria {
  background-image: url("../img/Maria-sm.webp");
  background-size: cover;
  background-position: 50%;
  position: relative;
  opacity: 0;
  display: none;
  aspect-ratio: 3/2;
}
article#bios .bio-maria img {
  width: 100%;
}
article#bios .bio-maria.open {
  opacity: 1;
  display: block;
}
article#bios .gaynor, article#bios .lisa, article#bios .maria {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.2);
  -o-border-radius: 8px;
  -ms-border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
article#bios .gaynor h2, article#bios .lisa h2, article#bios .maria h2 {
  font-size: 3em;
}
article#bios .gaynor h3, article#bios .lisa h3, article#bios .maria h3 {
  font-size: 2em;
  border-bottom: 1px solid #ffffff;
  margin-block: 1em;
}
article#bios .gaynor p, article#bios .lisa p, article#bios .maria p {
  font-size: 1.6em;
}

.bio-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
  padding: 2em;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.bio-nav .gaynor-btn img, .bio-nav .lisa-btn img, .bio-nav .maria-btn img {
  width: 250px;
  background: #c5b199;
  aspect-ratio: 1/1;
  padding: 10px;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

img.logo {
  width: 20vw;
}

@media screen and (min-width: 768px) {
  header {
    background-image: url("../img/Vinoz_bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
  }
}
@media screen and (min-width: 1000px) {
  .bio-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  header {
    background-image: url("../img/Vinoz_bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
  }
  article#bios .bio-gaynor {
    background-image: url("../img/Gaynor.webp");
    background-position: 0;
  }
  article#bios .bio-lisa {
    background-image: url("../img/Lisa.webp");
    background-position: 0;
  }
  article#bios .bio-maria {
    background-image: url("../img/Maria.webp");
    background-position: 0;
  }
  article#bios .gaynor, article#bios .lisa, article#bios .maria {
    margin: 2em;
    width: 60%;
  }
}
@media screen and (min-width: 1600px) {
  article#bios .bio-gaynor {
    background-image: url("../img/Gaynor.webp");
    background-position: 0;
  }
  article#bios .bio-lisa {
    background-image: url("../img/Lisa.webp");
    background-position: 0;
  }
  article#bios .bio-maria {
    background-image: url("../img/Maria.webp");
    background-position: 0;
  }
}