@import url("fonts/ChronicaPro/stylesheet.css");

:root {
    --primary-color: #d9b557;
    --secondary-color: #715221;
    --primary-color-light: #fffdf2;
    --extra-light: #f3f4f6;
    --bg-dark: #1b1b1b;
    --bg-light: #252525;
    --text-light: #a3a3a3;
    --white: #ffffff;
    --max-width: 1200px;
    --gradient-1: linear-gradient(to bottom right, var(--secondary-color), #000000);
    --gradient: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}
  
.section__header {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.section__description {
    max-width: 600px;
    margin-inline: auto;
    color: var(--extra-light);
    text-align: center;
    line-height: 1.75rem;
}

.bt a:hover{
  background: var(--primary-color-light);
  color: var(--primary-color);
}

.btw a:hover{
  background: var(--secondary-color);
  color: var(--primary-color);
}

.btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: var(--white);
  white-space: nowrap;
  background: var(--gradient);
  outline: none;
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  transition: 0.3s;
}

img {
    width: 100%;
    display: flex;
}

a {
    text-decoration: none;
}

.logo {
    max-width: 120px;
    display: inline-block;
}

html, body {
  scroll-behavior: smooth;
}

body {
    font-family: "Chronica Pro", sans-serif;
    color: var(--white);
    background-image: var(--gradient-1);
}

nav {
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.urgent{
  background-color: red;
  text-align: center;
  padding: 0.4rem;
}

.btn__flut{
  position: fixed;
  bottom: 65px;
  right: 30px;
  z-index: 999;
}

.header__container {
  padding-top: 8rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 2rem;
  isolation: isolate;
}

.header__content {
  text-align: left;
  grid-area: 1/1/2/4;
}

.header__content h1 {
  font-size: 4rem;
  line-height: 4rem;
  text-align: left;
  margin-bottom: 1rem;
}

.header__content .section__description {
  margin-bottom: 2rem;
  text-align: left;
  margin-inline-start: unset;
}  

.header__image {
  grid-area: 1/3/2/5;
  position: relative;
  isolation: isolate;
  z-index: -1;
}

.header__image img {
  max-width: 450px;
  margin-inline: auto;
  border-radius: 25rem;
  margin-inline-start: unset;
}

.header__image::after {
    position: absolute;
    content: "FLAIRAR";
    letter-spacing: 1.5rem;
    opacity: 0.5;
    right: 1rem;
    top: 50%;
    transform: translate(50%, -50%) rotate(90deg);
}

.banner {
    background-image: linear-gradient(to top, var(--primary-color), transparent), url("assets/banner.JPEG");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
  
.banner__content {
    padding: 2.2rem 0;
    max-width: 400px;
    margin-left: auto;
}

.banner__content h5 {
    margin-bottom: 1rem;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--white);
}

.banner__content p {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 300;
}

.service__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service__card {
    padding: 2rem 1rem;
    text-align: center;
    background-image: var(--gradient);
    border-radius: 1rem;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.service__card span {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service__card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.swiper {
    margin-top: 4rem;
    padding-bottom: 4rem;
    width: 100%;
}

.swiper p{
    font-size: 1.2rem;
    font-weight: 200;
}
  
.swiper-slide {
    max-width: 400px;
    padding-inline: 0.5rem;
    padding-top: 6rem;
}

.swiper-slide img{
    border-radius: 1rem;
    transition: 0.3s;

}

.ofert__container {
    background-image: var(--gradient);
}

.ofert__content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4rem;
}

.ofert__content h2{
    font-size: 3rem;
    font-weight: 700;
}

.ofert__content p{
    font-weight: 300;
    font-size: 1.7rem;
    padding-bottom: 1rem;
}

.ofert__content .btn {
    font-size: 1.3rem;
    color: var(--primary-color);
    background: var(--white);
}

.form_container{
  width: 100%;
  height: 100vh;
  display: flex;
}

.form_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(to top, var(--primary-color), transparent),
  url("assets/form.jpg");
  padding: 2.5rem;
}

.form_content h2{
  font-size: 2rem;
  font-weight: 800;
  padding-bottom: 3.2rem;
}

.form_content h3{
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 1rem;
}

.form_content ol{
  list-style: none;
}

.form_content p {
  font-size: 1rem;
  font-weight: 300;
  padding-bottom: 1rem;
}

.form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 3rem;
}

.title h3{
  color: #000000;
  font-size: 2rem;
  font-weight: 600;
}

.form-header {
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
}

.form-header h3::after {
  content: '';
  display: block;
  width: 5rem;
  height: 0.3rem;
  background-color: var(--secondary-color);
  margin: 0 auto;
  position: absolute;
  border-radius: 10px;
}

.input-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 0;
}

.input-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}

.input-box input {
  margin: 0.6rem 0;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 10px;
  box-shadow: 1px 1px 6px #0000001c;
  font-size: 0.8rem;
}

.input-box input:hover {
  background-color: #eeeeee75;
}

.input-box input:focus-visible {
  outline: 1px solid #6c63ff;
}

.input-box label,
.gender-title h6 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #000000c0;
}

.input-box input::placeholder {
  color: #000000be;
}

.gender-group {
  display: flex;
  justify-content: space-between;
  margin-top: 0.62rem;
  padding: 0 .5rem;
}

.gender-input {
  display: flex;
  align-items: center;
}

.gender-input input {
  margin-right: 0.35rem;
}

.gender-input label {
  font-size: 0.81rem;
  font-weight: 600;
  color: #000000c0;
}

.continue-button button {
  width: 100%;
  margin-top: 2.5rem;
  border: none;
  background-color: var(--secondary-color);
  padding: 0.62rem;
  border-radius: 5px;
  cursor: pointer;
}

.continue-button button:hover {
  background-color: var(--primary-color);
}


.continue-button button a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  color: #fff;
}

.faq h2{
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 800;
  color: white;
}

.faq h3{
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
}

.faq_container{
  border-bottom: 1px solid white;
  border-radius: 0;
}

.faq_content{
  display: none;
}

.faq_content p{
  margin-bottom: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  padding-left: 1rem;
}

.buttCont{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;

}

.buttCont::after{
  content: '\002B';
  color: white;
  font-size: 24px;
  float: right;
  margin-left: 5px;

}

.active:after {
  content: "\2212";
}


.buttCont :hover{
  cursor:pointer;
}

.contact__container {
  text-align: center;
}

.contact__container .logo {
  margin-bottom: 1rem;
}

.contact__socials {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact__socials a {
  padding: 7px 10px;
  font-size: 1.5rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.contact__socials a:hover {
  background: var(--gradient);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--extra-light);
  text-align: center;
}

@media (max-width : 450px) {
  nav {
    padding: 2rem 1rem;
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav__bar {
    padding: 0;
  }
  
  .nav__menu__btn {
    display: none;
  }
  
  .nav__links {
    padding: 0;
    width: unset;
    position: static;
    transform: none;
    flex-direction: row;
    background-image: none;
  }
  
  .nav__links a:hover {
    color: var(--secondary-color);
  }
  
  .nav__links li:last-child {
    display: none;
  }
  
  .btn__large {
    display: flex;
  }
  
  .btn{
    font-size: 0.8rem;
  }

  .header__container {
    padding-top: 5rem;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }

  .banner__content h5{
    font-size: 1.8rem;
  }

  .banner__content p{
    font-size: 1rem;
  }

  .service__grid{
    display: flex;
    flex-direction: column;
  }

  .client__card {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .ofert__content {
    justify-content: space-between;
  }

  .ofert__content p{
    font-size: 1.4rem;
  }

  .ofert__content .btn{
    font-size: 0.8rem;
  }
  
  .banner__content .section__header {
    text-align: left;
  }
  
  .header__image {
    grid-area: 1/2/3/5;
  }
  
  .header__image img {
    margin-inline-start: unset;
  }

  .header__image::after{
    display: none;
  }
  
  .header__content {
    grid-area: 1/1/2/4;
    text-align: left;
  }
  
  .header__content h1 {
    font-size: 2.5rem;
    line-height: 4rem;
    text-align: left;
  }
  
  .header__content .section__description {
    text-align: left;
    margin-inline-start: unset;
  }
  
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  
  .about__content,
  .about__content :is(.section__header, .section__description) {
    text-align: left;
  }
  
  .service__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form_container{
    display: flex;
    flex-direction: column;
  }

  .form_content{
    background-image: linear-gradient(to top, var(--primary-color), transparent), url("assets/form2.jpg");
  }

  .input-group {
    flex-direction: column;
    padding-right: 5rem;
    max-height: 10rem;
    overflow-y: scroll;
    flex-wrap: nowrap;
  }

  .faq h3{
    font-size: 1.5rem;
  }

  .faq p{
    font-size: 1rem;
  }

  .btn__flut{
    font-size: 40%;
  }
}

@media (max-width : 450px) {
  .form_container{
    margin-bottom: 6rem;
  }

  .header__content h1 {
    font-size: 2.2rem;
    line-height: 3rem;
    text-align: left;
  }

  .header__content h3{
    font-size: 1.1rem;
  }

  .header__content p{
    font-size: 0.85rem;
    padding-bottom: 2rem;
  }

  .banner__content h5{
    font-size: 1.3rem;
  }

  .banner__content p{
    font-size: 0.85rem;
  }

  .client__container p{
    font-size: 1rem;
    text-align: center;
  }

  .ofert__content p{
    font-size: 1.2rem;
    text-align: center;
  }

  .form_content h2{
    font-size: 1.6rem;
  }

  .form_content h3{
    font-size: 1.2rem;
  }

  .form_content p{
    font-size: 0.8rem;
  }

  .faq h2{
    font-size: 1.6rem;
  }

  .faq h3{
    font-size: 1.2rem;
  }

  .faq p{
    font-size: 0.8rem;
  }
}