@import url("https://fonts.googleapis.com/css2?family=Momo+Trust+Display&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  color: inherit;
  scroll-behavior: smooth;
}
::selection {
  background-color: #ffde59;
  color: black;
}

header {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15)),
    url("assets/bg-baw.jpg");
  background-size: 100% auto;
  background-position: bottom;
  background-attachment: fixed;
  position: relative;
  z-index: 100;
}

/*nav*/
nav {
  width: 100%;
  height: 15vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}

nav #logo {
  width: 10%;
  padding: 0.5rem;
}
nav #logo img {
  width: 100%;
  height: 15vh;
  object-fit: contain;
  background-color: #ff0000;
}
nav .navbar {
  min-width: 50%;
  height: 15vh;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn {
  width: max-content;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  font-family: "Quantico", sans-serif;
  font-weight: 600;
  background-color: #ff0000;
  margin: 1rem;
  box-shadow: 5px 5px 2px #443d21;
}
nav .navbar li {
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn:hover {
  background-color: #ffde59;
  box-shadow: -1px 1.5px 1px black;
  transition: all ease-in-out cubic-bezier(0.39, 0.575, 0.565, 1) 3ms;
}
.btn:hover {
  color: rgb(255, 0, 0);
}
.btn {
  color: #ffde59;
  text-shadow: -1px 1.5px 1px black;
}
.about {
  height: 100vh;
  width: 100%;
  position: relative;
}
.about-background {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.about-background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.about div {
  position: absolute;
  z-index: 10;
}
.about-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-text p {
  width: 50%;
  font-size: 2rem;
  text-align: center;
  font-family: "Quantico", sans-serif;
}

.transparent {
  width: 100%;
  height: 100vh;
}

.contact {
  width: 100%;
  height: 100vh;
  position: fixed;
  bottom: 0%;
  z-index: 0;
}
.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.contact-profile {
  width: 50%;
  height: 100%;
}
.contact-profile img {
  width: 100%;
  height: auto;
  filter: drop-shadow(10px 4px 10px rgb(0, 0, 0));
  mix-blend-mode: darken;
}
.contact-content {
  font-size: 1.5rem;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.contact-content span {
  font-weight: bold;
  font-family: "Quantico", sans-serif;
}
.fa-phone {
  color: green;
}
.fa-envelope {
  color: rgb(255, 174, 0);
}
.fa-location-dot {
  color: rgb(71, 71, 239);
}
.contact-content .section-header {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  font-family: "Quantico", sans-serif;
  transform: rotate(-4deg);
  transition: all 0.25s ease;
}
.section-header:hover {
  transform: rotate(0deg);
}
.contact-card {
  margin-left: 5rem;
}
