/* GLOBAL STYLES */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope-Bold";
  src: url("../fonts/Manrope-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope-ExtraBold";
  src: url("../fonts/Manrope-ExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "PPEditorialOld";
  src: url("../fonts/PPEditorialOld-UltralightItalic.otf") format("truetype");
}

:root{
  --custom-white:#FFECD9;

}

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

.ppeditorial-old {
  font-family: "PPEditorialOld";
}

.manrope {
  font-family: "Manrope";
}
.manrope-bold {
  font-family: "Manrope-Bold";
}
.manrope-extra-bold {
  font-family: "Manrope-ExtraBold";
}

.text-color {
  color:var(--custom-white);
}

.title-size {
  font-size: 3.5rem;
}

.larger-text-size {
  font-size: 1.1rem;
}

.text-size {
  font-size: 1rem;
}

.smaller-text-size {
  font-size: 0.8rem;
}

.bg-color {
  background-color: rgba(0, 0, 0, 0.64);
}

.btn {
  border: 1px solid var(--custom-white);
  padding: 2px 15px;
  color:var(--custom-white);
  background-color: transparent;
  width: fit-content;
  font-family: "Manrope";
}

.btn:hover {
  background-color: inherit;
  cursor: pointer;
}

/* APP STYLES */

.app {
  height: 100vh;
  background-image: url("../images/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  gap: 5%;
}

.bottom-center {
  width: 100vw;
  position: fixed;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

#contact-info {
  display: none;
  text-align: center;
}

.header {
  width: 100vw;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1%;
}

.header .logo {
  height: 8vh;
  max-width: 100%;
}

.header p {
  position: absolute;
  right: 70px;
  padding: 0;
}

.content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.content #toggle-button {
  width: 100%;
  border: none;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 5px rgb(243, 183, 0);
}

.content #toggle-button #toggle-button-icon {
  border: 1px solid white;
  border-radius: 50%;
  color: white;
  font-size: 20px;
}

.content #form {
  width: 100%;
  display:flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 10px 20px;
  padding-bottom: 25px;
  overflow: hidden;
  max-height: 0;
  visibility: hidden;
  transition: max-height 0.7s ease-in-out; 
}

.content #form.open {
  max-height: 1000px !important; 
  visibility: visible;
}

.content #form label {
  display: flex;
  width: 100%;
}

.content #form label span {
  white-space: nowrap;
}

.content #form label input {
  flex-grow: 1;
  margin-left: 10px;
  background-color: rgba(0, 0, 0, 0.75);
  border: none;
  color: white;
}

.content #form label input:focus {
  outline: none;
  border: 1px solid rgba(243, 182, 0, 0.404);
}

.content .container {
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rotate-icon {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

@media screen and (max-width: 800px) {
  .header {
    justify-content: flex-start;
    padding-left: 70px;
  }
}

@media screen and (max-width: 650px) {
  .title-size {
    font-size: 3rem;
  }

  .larger-text-size {
    font-size: 1rem;
  }

  .text-size {
    font-size: 0.9rem;
  }

  .smaller-text-size {
    font-size: 0.6rem;
  }

  .header p{
    right:20px;
  }

  .header{
    padding-left:20px;
  }

  .content {
    width: 80%;
  }
}

@media screen and (max-width: 400px) {
  .content {
    width: 90%;
  }
}
