@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "EB Garamond", serif;
  list-style-type: none;
  text-decoration: none;
}
body {
  background: rgb(28, 26, 26);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px 10%;
  z-index: 1000;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.85);
}

.logo {
  color: white;
  font-size: 26px;
  font-weight: 800;
  font-family: "Playfair Display", serif;
}

.navlist {
  display: flex;
}

.navlist a {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-left: 30px;
  transition: 200ms;
}

.navlist a:hover {
  color: red;
}

.toggle-btn {
  font-size: 26px;
  color: white;
  display: none;
}

.hero {
  padding: 0 5% 0 10%;
  height: 100%;
  width: 100%;
  min-height: auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2rem;
  margin-top: 75px;
}

.hero-text h1 {
  font-size: 56px;
  color: white;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero-text h2 {
  font-size: 32px;
  color: red;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-text p {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-text a {
  font-size: 24px;
  color: red;
  display: inline-block;
  font-weight: 700;
  border: solid;
  border-radius: 12px;
  padding: 5px 15px;
  transition: 200ms;
}

.hero-text a:hover {
  color: white;
}

.hero-img {
  max-width: 500px;
  height: auto;
}
.hero-img img{
    max-width: 100%;
}

.hero-text a.cnt {
  margin-left: 15px;
}

.fw{
    color: white;
    margin: 10px 5%;
}
.fwtitle {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}
.wtitle{
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    margin-top: 100px;
}
.playbox-con {
    flex-direction: row;
    display: flex;
    justify-content: space-between;

}
.playbox{
    text-align: center;
    width: 30%;
    background-color: transparent;
    margin: 2.5%;
    border: solid 2px red;
    border-radius: 5px;
}
.playbox img{
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}
.playbox h3{
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.contact {
  margin-top: 150px;
  flex-direction: row;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.contact-text {
  margin: 10% 5% 25px 5%;

}
.contact-text h1 {
  font-size: 64px;
  color: white;
}
.contact-text h2{
  color: white;
  font-size: 18px;
  max-width: 500px;
  margin-top: 20px;
}

.contact-text p{
  color: red;
  font-size: 18px;
  font-weight: 600;
  margin-top: 25px;
}

.contact-img {
  max-width: 50%;
}
.contact-img img{
  max-height: 700px;
  border-radius: 10px;
  border: solid 2px white;
}

.about-title {
  padding: 100px 5% 10px;
  text-align: center;
}

.about-title h1 {
  font-size: 64px;
  color: white;
}

.about-work{
  flex-direction: row;
  display: flex;
  justify-content: center;

}

.about-work h2 {
  padding: 10px 3% 10px;
  color: white;
}

.about-main {
  padding: 5% 2% 5px 10%;
  flex-direction: row;
  display: flex;
  justify-content: center;
}
.about-text {
  max-width: 55%;
  padding-right: 20px;
}

.about-pic {
  max-width: 45%;
}
.about-pic img {
  max-width: 90%;
}

.about-text p {
  color: white;
  font-size: 18px;
}
@media (max-width: 750px) {

  .hero {
    max-width: 100%;
    margin-top: 150px;
    height: 100%;
    gap: 1rem;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .hero-img{
    max-width: 300px;
  }
  .hero-img img{
    width: 90%;
  }
  .hero-text {
    margin-bottom: 50px;
  }
  .hero-text p {
    font-size: 28px;
  }
  .hero-text a {
    font-size: 30px;
  }
  .toggle-btn {
    display: block;
    font-size: 50px;
  }
  .navlist {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 10px;
    height: 90vh;
    background: black;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 50px 0px;
  }
  .navlist a {
    display: block;
    margin: 10px 0;
    margin-left: 0;
    font-size: 46px;
  }
  .logo {
    font-size: 35px;
  }

  .navlist.open {
    right: 0;
    width: 100%;
  }
  .playbox-con {
    flex-direction: column;
    display: flex;
    align-content: center;
  }
  .playbox {width: 90%; align-self: center;}

  .about-work {
    flex-direction: column;
    display: flex;
    align-content: center;
  }

  .about-text{
    max-width: 90%;
  }
  .contact {
    flex-direction: column;
    display: flex;
    align-content: center;

  }
  .contact-img {
    max-width: 95%;
    align-self: center;
  }
  .contact-img img {
    max-width: 100%;
  }
}
