@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Sixtyfour+Convergence&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  list-style: none;
}

:root{
  --color-red: #db0001;
  --color-white: #fff;
  --color-black: #0e0e0e;
  --color-dark: #000;
  --color-gray: #777;
  --color-dark-gray: #303030;

  --container-width-lg: 80%;
  --container-width-md: 90%;
  --container-width-sm: 94%;

  --transition: all 500ms ease;
}

a{
  font-family: 'Montserrat', sans-serif !important;
}

body{
  font-family: 'Roboto', sans-serif;
  background: var(--color-black);
  color: var(--color-white);
  line-height: 1.5;
  overflow-x: hidden;
}

html{
  scroll-behavior: smooth;
}

h1,h2,h3,h4,h5,h6{
  font-family: 'Roboto';
  line-height: 1;
  margin-bottom: 1rem;
}

h1{
  font-size: 3rem;
}

h2{
  font-size: 2.5rem;
}

h3{
  font-size: 2.2rem;
}

h4{
  font-size: 1.9rem;
}

h5{
  font-size: 1.5rem;
}

h6{
  font-size: 1.2rem;
}

p{
  font-size: 1rem;
}

small{
  font-size: 0.8rem;
}

img{
  width: 100%;
  display: block;
  object-fit: cover;
}

.btn{
  display: inline-block;
  background: var(--color-white);
  color: var(--color-dark);
  padding: 1rem 2rem;
  border: 1px solid transparent;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover{
  background: transparent;
  color: var(--color-red);
  border-color: var(--color-red);
}

.btn-primary{
  background: var(--color-red);
}

.container{
  width: var(--container-width-lg);
  margin: 0 auto;
}

section{
  padding: 6rem 0;
}

section h2{
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
  color: var(--color-red);
}

::-webkit-scrollbar{
  width: 5px;
  background: var(--color-black);
}
::-webkit-scrollbar-thumb{
  background: var(--color-red);
  border-radius: 5px;
}

/********** END OF GENERAL STYLES *************/


/* Scroll To Top Button CSS */
.scroll-button a{
  position:fixed;
  bottom:20px;
  right:20px;
  color: var(--color-white);
  background: var(--color-red);
  padding:10px 12px;
  font-size: 1.1rem;
  border-radius: 50%;
  z-index: 100;
  display: none;
}

/**************************** HOMEPAGE **************************/
.header{
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(images/header-image.jpg);
  background-size: cover;
  background-position: center;
  padding: 10px 8%;
  position: relative;
}

/************ NAV **************/
nav{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.nav__container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*padding: 1rem 5%;*/
  padding: 1rem 0;
}

.logo{
  cursor: pointer;
  font-size: 1.7rem;
  font-family: 'Roboto';
  color: var(--color-red);
  margin-top: 1rem;
}

nav .menu-btn{
  display: none;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 0 2rem;
}

.nav-links a{
  font-size: 0.95rem;
  color: var(--color-white);
  transition: var(--transition);
}

.nav-links a:hover{
  color: var(--color-red);
  text-shadow: 0 0 0.7rem var(--color-gray);
}

/*--------------------------------------*/
nav.sticky{
  background: var(--color-dark);
  /*padding: 10px 0;*/
  width: 100%;
  top: 0;
  left: 0;
}
.active{
  position: relative;
}
.active::after{
  content: '';
  background: var(--color-gray);
  width: 1.5rem;
  height: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  border-radius: 2px;
}

/*-------------------------------HEADER------------------------*/
.header-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  /*margin-top: 100px;*/
  padding-top: 5rem;
}
.header-content h1{
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 600;
  max-width: 650px;
}
.header-content h3{
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  color: var(--color-red);
}
.header-content p{
  color: var(--color-red);
  margin-top: 0.6rem;
  font-weight: 500;
}
.header-content button{
  width: 100%;
  margin: 1rem 0;
}

.email-signup{
  background: var(--color-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-top: 2rem;
  overflow: hidden;
}
.email-signup input{
  flex: 1;
  border: 0;
  outline: 0;
  margin-left: 1.2rem;
}
.email-signup button{
  background: var(--color-red);
  border: 0;
  outline: 0;
  color: var(--color-white);
  font-size: 1rem;
  cursor: pointer;
  padding: 15px 30px;
}

/* -------------- FEATURES ------------ */
.features{
  padding: 3rem 15%;
}
.row{
  display: flex;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
  padding: 3rem 0;
}
.text-col{
  flex-basis: 50%;
  margin-bottom: 1.2rem;
  text-align: center;
}
.img-col{
  flex-basis: 50%;
  margin-bottom: 1.2rem;
}
.img-col img{
  display: block;
  width: 70%;
  margin: 0 auto;
}
.features h2{
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  color: var(--color-red);
}
.text-col a{
  font-size: 0.8rem;
}

/* -------------- faq -------------- */
.faq{
  padding: 1rem 12%;
  text-align: center;
}
.faq h2{
  color: var(--color-red);
  font-size: 3rem;
  font-weight: 500;
}
.accordion{
  margin-top: 3.5rem;
  width: 100%;
  max-width: 750px;
}
.accordion li{
  width: 100%;
  padding: 0.2rem;
}
.accordion li label{
  display: flex;
  align-items: center;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 500;
  background: var(--color-gray);
  margin-bottom: 2px;
  cursor: pointer;
  position: relative;
}
.accordion li label::after{
  content: '+';
  font-size: 2rem;
  position: absolute;
  right: 1.2rem;
  transition: transform 0.5s;
}
input[type="radio"]{
  display: none;
}
.accordion .content{
  background: var(--color-gray);
  text-align: left;
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}
.accordion input[type="radio"]:checked + label + .content{
  max-height: 600px;
  padding: 1rem 1.2rem;
}
.accordion input[type="radio"]:checked + label::after{
  transform: rotate(135deg);
}
.faq a{
  margin: 0.5rem auto;
}


/*************** APPOINTMENT SECTION ********************/
.appointment-container{
  padding: 2rem 0;
}

.appointment-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  margin: 1.2rem auto;
  padding: 3rem 0;
}

.appointment-content p{
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}
.appointment-content span{
  font-size: 0.85rem;
}
.appointment-content h3{
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gray);
  margin-bottom: 5px;
}

.appointment-form h2{
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: left;
  color: var(--color-red);
}
.appointment-form form{
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-right: 4rem;
}
.form__name{
  display: flex;
  gap: 1.2rem;
}
.form__name .name-input{
  width: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  border: 1px solid #777;
}
.form__name .name-input:focus{
  background: transparent;
}
input, textarea, select{
  width: 100%;
  padding: 1rem;
  background: var(--color-dark);
  color: var(--color-white);
  border: 1px solid var(--color-gray);
  resize: none;
}
select{
  color: var(--color-gray);
}





/* --------- footer ----------- */
.footer{
  padding: 3rem 10% 1rem;
  border-top: 2px solid #333;
  color: var(--color-gray);
}

.footer .row{
  align-items: self-start;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.footer .col{
  /*flex-basis: 25%;
  flex-grow: 1;*/
  margin-bottom: 1.2rem;
}
.footer .row .col small{
  font-size: 0.7rem;
  text-align: center;
}

.footer .col h4{
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--color-red);
}
.footer .col a{
  display: block;
  color: var(--color-gray);
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
  transition: var(--transition);
}
.footer .col a:hover{
  text-decoration: underline;
}
.footer .language-btn{
  background: var(--color-red);
  color: var(--color-white);
  padding: 11px 10px;
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  font-size: 0.8rem;
}
.copyright-text{
  margin: 1.2rem auto;
}
.socials{
  display: flex;
  align-items: center;
  /*justify-content: space-between;*/
  gap: 1rem;
  margin: 1rem auto;
}
.socials a{
  font-size: 1.2rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  padding: 0.4rem;
  transition: var(--transition);
}
.socials a:hover{
  background: var(--color-dark-gray);
  /*border-color: var(--color-red);*/
  color: var(--color-white);
}


/* ------------ media query ---------------- */
@media screen and (max-width: 1024px){
  .container{
    width: var(--container-width-md);
  }
}



@media screen and (max-width: 992px) {
  nav .menu-btn{
    display: inline-block;
    background: transparent;
    font-size: 1.8rem;
    color: var(--color-white);
    cursor: pointer;
  }
  nav a#close-menu-btn{
    display: none;
  }
  .nav-links{
    position: fixed;
    top: 5rem;
    right: 0;
    height: fit-content;
    width: 15rem;
    flex-direction: column;
    gap: 0;
    display: none;
  }
  .nav-links li{
    width: 100%;
    height: 5rem;
    animation: animateNavItems 400ms linear forwards;
    transform-origin: top left;
    opacity: 0;
  }/**/
  .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;
  }
  .nav-links li:nth-child(5){
    animation-delay: 800ms;
  }
  .nav-links li:nth-child(6){
    animation-delay: 1s;
  }
  .nav-links li:nth-child(7){
    animation-delay: 1.2s;
  }

  @keyframes animateNavItems {
    0%{
      transform: rotateZ(-90deg) rotateX(90deg) scale(0.1);
    }
    100%{
      transform: rotateZ(0) rotateX(0) scale(1);
      opacity: 1;
    }
  }/**/

  .nav-links li a{
    background: var(--color-dark);
    box-shadow: -4rem 6rem 10rem rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
  }
  .nav-links li a:hover{
    background: var(--color-red);
    color: var(--color-white);
  }  
  .active::after{
    display: none;
  }
  .footer .row{
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}




@media screen and (max-width: 600px) {
  .container{
    width: var(--container-width-sm);
  }
  .logo{
    font-size: 1.5rem;
  }
  nav{
    /*background: var(--color-black);*/
    position: fixed;
    top: 0;
    left: 0;
  }
  .header-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 5rem;
    width: 80vw;
  }
  .header-content h1{
    font-size: 2rem;
    letter-spacing: 1px;
    line-height: 1.7;
    text-transform: uppercase;
  }
  .header-content p{
    font-size: 1rem;
  }
  .text-col, .img-col{
    flex-basis: 100%;
  }
  .features h2{
    font-size: 1.6rem;
  }
  .features p{
    font-size: 1rem;
  }
  .row:nth-child(2), .row:nth-child(4){
    flex-direction: column-reverse;
  }
  .features .row{
    padding: 0.8rem 0;
  }
  .faq h2{
    font-size: 1.6rem;
  }
  .faq h3{
    font-size: 1.4rem;
  }
  .faq small{
    font-size: 0.9rem;
  }
  .faq form .btn{
    font-size: 0.85rem;
  }
  .accordion .content{
    font-size: 0.9rem;
  }
  .accordion li label{
    padding: 0.6rem;
    font-size: 0.8rem;
  }
  .accordion li label::after{
    font-size: 2rem;
  }
  /***/
  .appointment-row{
    grid-template-columns: 100%;
  }
  .footer .row{
    grid-template-columns: 1fr;
  }
}






/* ============================== MODAL FORM =========================== */
/*
.modal {
  display: none; 
  position: fixed; 
  z-index: 10; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; 
  overflow: hidden; 
  background-color: #474e5d;
  padding-top: 20px;
}
.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}
.close:hover, .close:focus {
  color: #f44336;
  cursor: pointer;
}
.modal-content {
  background-color: #000;
  margin: 5% auto 10% auto; 
  border: 1px solid #888;
  width: 80%; 
}
.modal-container {
  padding: 16px;
}
.modal-container h1{
  font-size: 1.5rem;
  font-weight: 500;
  color: #db0001;
  text-align: center;
  text-transform: uppercase;
}
.modal-container p{
  margin-top: 8px;
  font-size: 14px;
  color: #db0001;
}
.modal-hr {
  border: 1px solid #777;
  margin: 5px auto 10px auto;
}
.modal-container label b{
  font-size: 14px;
  letter-spacing: .6px;
  margin-left: 5px;
}
.modal-inputs{
  width: 100%;
  font-size: 14px;
  padding: 5px;
  margin: 5px 0 22px 0;
  display: inline-block;
  border: none;
  outline: 0;
  background: transparent;
  border-bottom: 1px solid #333;
}
.modal-inputs:focus{
  background-color: transparent;
  outline: none;
}
.clearfix{
  display: grid;
  grid-template-columns: 50% 50%;
  gap: .5rem;
  margin: 3px auto;
  padding: .1rem;
}
.modal-btn {
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  border: none;
  outline: 0;
  cursor: pointer;
  width: 100%;
}
.modal-btn:hover {
  background: green;
  border: 1px solid #4CAF50;
}
.cancelbtn {
  padding: 14px 20px;
  background-color: red;
  border: 0;
  outline: 0;
  cursor: pointer;
  width: 100%;
}
.cancelbtn:hover{
  background: #959595;
  border: 1px solid #f44336;
}
*/

/* Change styles for cancel button and signup button on extra small screens *
@media screen and (max-width: 300px) {
  .cancelbtn, .modal-btn {
     width: 100%;
  }
}

/******* MAILING LIST ***********/
/*
.faq h3{
  font-weight: 500;
  font-size: 2rem;
  color: var(--color-red);
  margin: 2rem auto;
  text-transform: uppercase;
}
.faq form{
  max-width: 650px;
  margin: 2rem auto 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mailing-list form input{
  flex: 1;
  background: var(--color-white);
  border-radius: 4px;
  margin-left: 1.2rem;
}
.faq form .btn{
  font-size: 1.1rem;
  border: 1px solid var(--color-red);
}
.faq form button:hover{
  background: var(--color-black);
  color: var(--color-red);
}
*/