:root {
  --color-primary: #ff7b02;
  /*  **************  GREEN THEME  ************* */
  --color-primary: #ff7b02;
  --color-primary-variant: #e5a55d;
  --color-bg-1: #000e17;
  --color-bg-2: #001e2d;
  --color-bg-3: #012734;
  --color-bg-4: #003347;
  --color-light: #85a2b2;
  --color-white: hsl(0, 0%, 90%);

  /* ***************  PURPLE THEME  *************** */

  /* --color-primary:#ff7b02;
    --color-primary-variant: #e5a55d;
    --color-bg-1: #140021;
    --color-bg-2: #1e0032;
    --color-bg-3: #25003e;
    --color-bg-4: #36005a;
    --color-light: #d0b8e0;
    --color-white: hsl(0,0%,90%); */

  --container-width-lg: 88%;
  --container-width-md: 92%;

  --transition: all 400ms ease;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--color-bg-3);
  color: var(--color-light);
  line-height: 1.7;
}
h1,
h2 {
  line-height: 1.1;
  font-weight: 400;
}
h1 {
  font-size: 4rem;
  color: var(--color-white);
}
h2 {
  font-size: 3.5rem;
}
a {
  color: var(--color-light);
  transition: var(--transition);
}

a:hover {
  color: var(--color-primary);
}
.container {
  width: var(--container-width-lg);
  margin: 0 auto;
  max-width: 21060px;
}

img {
  display: block;
  object-fit: contain;
  width: 100%;
}

/* *********************  NAV ************************ */

nav {
  height: 5rem;
  width: 100vw;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.window-scrolled {
  background: var(--color-bg-2);
  border-bottom: 0.2rem solid var(--color-bg-3);
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.3);
}

.nav__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__toggle-btn {
  display: none;
}

.nav__logo {
  font-size: 1.7rem;
}
.nav__logo span {
  color: var(--color-primary);
}
.nav__links {
  display: flex;
  gap: 4rem;
}
.nav__socials {
  display: flex;
  gap: 1rem;
}
.nav__socials a {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(
    var(--color-primary-variant),
    var(--color-primary)
  );
  display: grid;
  border-radius: 0.5rem;
  color: var(--color-bg-4);
  place-items: center;
}
.nav__socials a:hover {
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.4);
}

/* *********************  HEADER ************************ */

header {
  max-width: 100vw;
  height: 100vh;
  position: relative;
  top: 0;
  background: linear-gradient(var(--color-bg-3), var(--color-bg-1));
  overflow: hidden;
}
.header__container {
  display: grid;
  grid-template-columns: 43% 53%;
  gap: 4%;
  margin-top: 10rem;
  position: relative;
}
.header__image-bg {
  background: var(--color-bg-4);
  height: 22rem;
  width: 16rem;
  position: absolute;
}
.header__image-lg {
  width: 29rem;
  position: relative;
  top: 1rem;
  left: 1rem;
  filter: saturate(0) brightness(0.3);
  transition: var(--transition);
}

.header__image-sm {
  width: 28rem;
  height: 28rem;
  overflow: hidden;
  position: absolute;
  left: 6rem;
  top: 6rem;
  transition: var(--transition);
}
.header__left:hover .header__image-sm {
  opacity: 0;
}
.header__left:hover .header__image-lg {
  filter: saturate(1) brightness(1);
  border: 1rem, solid var(--color-bg-4);
  top: 0;
  left: 0;
}
.header__head {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.empty {
  height: 3.5rem;
  width: 18rem;
  background-color: var(--color-bg-2);
  border-radius: calc(3.5rem / 2);
  margin-bottom: 3.5rem;
  box-shadow: inset 0 1rem 1rem rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-bg-4);
}
.header__tag {
  color: var(--color-primary-variant);
}
.header__right p {
  margin-top: 2rem;
  width: 85%;
}

.header__frames {
  position: absolute;
  top: 88vh;
  right: 52rem;
  transition: var(--transition);
}

.header__frame {
  width: 14rem;
  border: 0.4rem solid var(--color-bg-3);
  box-shadow: 0 0 4rem rgba(0, 0, 0, 0.5);
  position: absolute;
  transform: rotate(-10deg);
  transform-origin: bottom left;
  transition: var(--transition);
}
.header__frame:nth-child(2) {
  transform: rotate(20deg);
  top: -2rem;
  left: 2rem;
}
.header__frames:hover .header__frame {
  transform: rotate(0);
}
.header__frames:hover .header__frame:nth-child(2) {
  top: 0;
  left: 15rem;
}
.contact__btn {
  color: var(--color-bg-1);
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* display: grid;
  place-items: center; */
  cursor: pointer;
  transition: var(--transition);
}
.header__btn {
  background: linear-gradient(
    -30deg,
    var(--color-primary-variant),
    var(--color-primary),
    var(--color-primary-variant)
  );
  position: absolute;
  right: 6%;
  bottom: -3rem;
}
.header__btn-md {
  display: none;
}
.header__btn:hover {
  box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.3);
  transform: translateY(-1rem);
  color: var(--color-bg-1);
}
.contact__btn i {
  font-size: 3.5rem;
  position: absolute;
}
.contact__btn p {
  font-size: 1rem;
  font-weight: 600;
  width: 10rem;
  height: 10rem;
  display: flex;
  justify-content: center;
  animation: spinText 30s linear infinite;
}
.contact__btn p span {
  position: absolute;
  transform-origin: 0.3rem 5rem;
}
@keyframes spinText {
  to {
    transform: rotate(360deg);
  }
}
/* ABOUT */

#about {
  padding-top: 13rem;
  margin-top: 18rem;
}
.about__container {
  display: grid;
  grid-template-columns: 10rem 26rem auto;
  gap: 3rem;
  position: relative;
}

.about__title {
  position: absolute;
  top: -7rem;

  z-index: 1;
}
.about__btn {
  color: var(--color-primary-variant);
  align-self: end;
}
.about__btn i {
  position: absolute;
}
.about__btn:hover {
  transform: translateY(-1rem);
  color: var(--color-primary);
}
.about__image {
  position: relative;
}
.about__image-bg {
  width: 16rem;
  height: 24rem;
  position: absolute;
  bottom: 0;
  background: var(--color-bg-4);
}
.about__image-lg {
  position: relative;
  left: 1rem;
  bottom: 1rem;
  filter: saturate(0) brightness(0.3);
  transition: 500ms ease;
}
.about__image-sm {
  position: absolute;
  top: 3rem;
  left: 8rem;
  height: 22rem;
  width: 22rem;
  overflow: hidden;
  box-shadow: 2rem 2rem 2rem rgba(0, 0, 0, 0.2);
}
.about__image:hover .about__image-sm {
  opacity: 0;
  transition: 500ms ease;
}
.about__image:hover .about__image-lg {
  filter: saturate(1) brightness(1);
  box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.2);
  border: 1rem solid var(--color-bg-4);
  left: 0;
  bottom: 0;
}
.about__right {
  margin-left: 4rem;
}
.about__right p {
  margin: 0 4rem 1.5rem 0;
}
/***************************** GALLERY *********************************/
#gallery {
  padding-top: 5rem;
  margin-top: 4rem;
}

.gallery__head {
  display: flex;
  justify-content: space-between;
}
.gallery__container p {
  width: 45rem;
}
.swiper {
  padding-bottom: 50px;
}
.swiper-wrapper {
  margin-top: 5rem;
  height: 22em;
  padding-bottom: 2rem;
}

.swiper-slide {
  border: 0.5rem solid var(--color-bg-4);
  height: fit-content;
  max-height: 36rem;
  overflow: hidden;
  transition: var(--transition);
}
.swiper-pagination-bullet {
  background: var(--color-light);
}
.swiper-pagination-bullet-active {
  background: var(--color-primary);
}
.swiper-button-prev {
  color: var(--color-primary) !important;
}
.swiper-button-next {
  color: var(--color-primary) !important;
}
.swiper-button-disabled {
  color: var(--color-light) !important;
}
/* ********************** CONTACT *********************** */
#contact {
  padding-top: 12rem;
  margin-top: 1rem;
}
.contact__container {
  display: grid;
  grid-template-columns: 10rem auto;
  gap: 10rem;
  position: relative;
}

.contact__title {
  position: absolute;
  top: -7rem;

  z-index: 1;
}
.contact__empty {
  margin-top: 2rem;
}

.wrapper {
  width: 100%;

  border-radius: 5px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
.wrapper form {
  margin: 35px 30px;
}
.wrapper form.disabled {
  pointer-events: none;
  opacity: 0.7;
}
form .dbl-field {
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
.dbl-field .field {
  height: 50px;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
.wrapper form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: #ccc;
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: var(--color-light);
}
.field input::placeholder,
.message textarea::placeholder {
  color: var;
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid var(--color-primary);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: var(--color-primary);
}
form .message {
  position: relative;
}
form .message i {
  top: 30px;
  font-size: 20px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
.message textarea:focus {
  padding-top: 14px;
}
form .button-area {
  margin: 25px 0;
  display: flex;
  align-items: center;
}
input::placeholder, textarea::placeholder {
  color: var(--color-white);
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: var(--color-primary-variant);
  transition: background 0.3s ease;
}
.button-area button:hover {
  background: var(--color-primary);
}
.button-area span {
  font-size: 17px;
  margin-left: 30px;
  display: none;
}
/* FOOTER */

footer {
  margin-top: 7rem;
}
.footer__container {
  border-top: 0.5rem solid var(--color-bg-4);
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.footer__head {
  display: flex;
  align-items: center;
  justify-content: center;
}

/***************** MEDIA QUERIES - medium screens ************/

@media screen and (max-width: 1024px) {
  .container {
    width: var(--container-width-md);
    position: relative;
  }
  h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  h2 {
    font-size: 2.5rem;
  }
  .nav__socials {
    display: none;
  }
  .nav__links {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    gap: 0;

    display: none;
  }
  .nav__links li {
    height: 5rem;
    box-shadow: -3rem 3rem 3rem rgba(0, 0, 0, 0.7);
    animation: navAnimation 600ms ease forwards;
    transform: rotateX(90deg);
    transform-origin: top;
  }
  .nav__links li a {
    background: var(--color-bg-4);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1rem 5rem 1rem 2rem;
    border-top: 1px solid var(--color-bg-2);
  }
  .nav__toggle-btn {
    display: inline-block;
    font-size: 2rem;
    background: transparent;
    cursor: pointer;
    color: var(--color-white);
  }
  #nav__toggle-close {
    display: none;
  }
  .nav__links li:nth-child(2) {
    animation-delay: 200ms;
  }
  .nav__links li:nth-child(3) {
    animation-delay: 400ms;
  }
  .nav__links li:nth-child(4) {
    animation-delay: 600ms;
  }
  @keyframes navAnimation {
    to {
      transform: rotateX(0);
      opacity: 1;
    }
  }

  /************************* HEADER ****************************/
  header {
    height: fit-content;
    padding: 14rem 0 12rem;
    display: grid;
    place-items: center;
  }
  .header__image-bg {
    display: none;
  }
  .header__image-sm {
    display: none;
  }
  .header__container {
    grid-template-columns: 40% 54%;
    gap: 6%;
    margin: 0;
  }
  .header__image-lg {
    filter: saturate(1) brightness(1);
    border: 1rem solid var(--color-bg-2);
    width: 100%;
    top: 0;
    left: 0;
  }
  .header__tag {
    margin-bottom: 1rem;
  }
  .empty {
    display: none;
  }
  .header__right p {
    width: 100%;
    margin-top: 1.5rem;
  }
  .header__frames,
  .contact__btn {
    display: none;
  }
  .header__btn-md {
    background: linear-gradient(
      135deg,
      var(--color-primary-variant),
      var(--color-primary)
    );
    margin-top: 2rem;
    display: inline-block;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    border-radius: 0.3rem;
    color: var(--color-light);
  }
  .header__btn-md:hover {
    color: var(--color-bg-1);
  }

  /***************************** ABOUT ************************/

  .about__container {
    grid-template-columns: 40% 54%;
    gap: 6%;
  }
  #about {
    margin-top: 3rem;
  }
  .about__image-bg,
  .about__image-sm {
    display: none;
  }
  .about__image-lg {
    left: 0;
    top: 0;
    filter: saturate(1) brightness(1);
  }
  .about__image:hover .about__image-lg {
    border: none;
  }
  .about__right {
    margin: 0;
  }
  .about__right p {
    width: 100%;
    line-height: 1.4;
  }
  /* ****************** GALLERY *********************** */

  #gallery {
    margin-top: 8rem;
  }
  .gallery__container p {
    width: 100%;
    margin-top: 2rem;
  }
  .swiper-wrapper {
    margin-top: 4rem;
    height: fit-content;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  /************************* CONTACT **********************/
  .wrapper header {
    text-align: center;
  }
  .wrapper form {
    margin: 35px 20px;
  }
  form .dbl-field {
    flex-direction: column;
    margin-bottom: 0px;
  }
  form .dbl-field .field {
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }
  form .message textarea {
    resize: none;
  }
  form .button-area {
    margin-top: 20px;
    flex-direction: column;
  }
  .button-area button {
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }
  .button-area span {
    margin: 20px 0 0;
    text-align: center;
  }
  .contact__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 0;
  }
  .contact__title {
    position: relative;
  }
  #contact {
    padding-top: 9rem;
  }
}

/* MEDIA - SMALL */
@media screen and (max-width: 600px) {
  h1,
  h2 {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--color-white);
  }
  header {
    padding: 0;
    padding-bottom: 6rem;
  }
  .header__container {
    grid-template-columns: 1fr;

    gap: 1rem;
    text-align: center;
  }
  .header__image-lg {
    width: 80%;
    height: 20rem;
    margin: 0 auto;
    margin-top: 7rem;
    overflow: hidden;
    border-radius: 15rem 15rem 0 0;
  }
  .header__head {
    justify-content: center;
  }
  .header__right p {
    margin-top: 1rem;
  }
  .header__title {
    margin-top: 1rem;
  }

  /* ABOUT */
  #about {
    margin-top: 1rem;
  }

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

  .about__right p {
    width: 100%;
  }
  .swiper-slide {
    border: 0;
  }
  .about__image-lg {
    width: 80%;
    height: 20rem;
    margin: 0 auto;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 15rem 15rem 0 0;
  }

  /* GALLERY */
  #gallery {
    margin-top: 3rem;
  }
  .gallery__container p {
    margin-top: 1rem;
  }
  .swiper-wrapper {
    margin-top: 3rem;
  }

  /* contact */
  #contact {
    padding-top: 2rem;
  }
  .contact__title {
    top: 0;
  }
}
