@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root{
    --primary-color: #333;
    --white-color: #fff;
    --font-color: #333;
    --black-color: #000;
}

body{
    background: #000;
}

#mainVideo video{
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#contactSec{
    position: relative;
    margin-top: -7px;
    border-bottom: 5px solid var(--primary-color);
    margin-bottom: 50px;
    background: var(--primary-color);
}

/* first offer section */
#firstOffer{
    background: #EB0075;
    text-align: center;
    padding: 10px;
    color: var(--white-color);
    font-size: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-bottom: 2px solid rgb(255, 255, 255);
    border-top: 2px solid rgb(255, 255, 255);
}

/* contact section */
#contactInfo{
    width: 1000px;
    max-width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 30px;
    border-radius: 20px;
}

#contactForm form{
    background: white;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid lightgray;
}

#formMessage{
    font-size: 10px;
    background: rgb(0, 184, 0);
    color: white;
    padding: 4px 20px;
    border-radius: 5px;
    font-weight: 300;
    margin: 3px;
    display: none;
}

#contactForm form #headline{
    margin-bottom: 10px;
}

#contactForm form #headline h2{
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
}

#contactForm form #headline p{
    font-size: 15px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


#contactForm form input{
    width: 100%;
    height: 40px;
    border: 1px solid lightgray;
    border-radius: 5px;
    padding-left: 20px;
    margin-bottom: 4px;
    outline: none;
}

#contactForm form button{
    width: 100%;
    height: 40px;
    border: none;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 50px;
    font-size: 18px;
    margin-top: 5px;
    cursor: pointer;
    transition: all ease 0.3s;
}

#contactForm form button:active{
    transform: scale(0.98);
}

#contactLinks{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#contactLinks button{
    width: 370px;
    max-width: 100%;
    margin-bottom: 8px;
    height: 45px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    color: var(--white-color);
}

#contactLinks a:nth-child(1) button{
    background: blue;
    transition: all ease 0.2s;
}

#contactLinks a:nth-child(1) button:active{
    transform: scale(0.9);
}

#contactLinks a:nth-child(2) button{
    background: green;
    transition: all ease 0.2s;
}

#contactLinks a:nth-child(2) button:active{
    transform: scale(0.9);
}

#contactLinks button:nth-child(3) {
    background: #EB0075;
}

#contactLinks button:nth-child(4) {
    background: #EB0075;
    margin-bottom: 0;
}

/* image section */
#salonPhotos{
    max-width: 100%;
    width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 40px;
    margin-bottom: 70px;
    padding: 20px;
}

#salonPhotos img, #salonPhotos video{
    width: 100%;
    border-radius: 5px;
    border: 2px solid #EB0075;
}

/* review section */
#reviews{
    margin-bottom: 50px;
}

#googleReviews{
    text-align: center;
    /* background: var(--white-color); */
}

#googleReviews img{
    width: 300px;
    border-radius: 100px;
}

#all-reviews{
    width: 1000px;
    max-width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    margin-top: 20px;
    padding: 20px;
}

#all-reviews img{
    width: 100%;
    border-radius: 10px;
}

/* make FQ section */
#FQ{
    width: 1000px;
    max-width: 100%;
    padding: 20px;
    margin: auto;
    user-select: none;
    margin-bottom: 100px;
}

#fqHeading{
    color: var(--white-color);
    text-align: center;
    margin-bottom: 30px;
}

#fqHeading h2{
    font-size: 40px;
    font-weight:  600;
}

#FQ .QuaAns{
    padding: 10px 30px;
    border-radius: 5px;
    background: #272727;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 10px;
    color: var(--white-color);
    transition: all ease 0.2s;
}

#FQ .QuaAns .Quation{
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#FQ .QuaAns .Quation h3{
    font-size: 20px;
    font-weight: 600;
}

#FQ .QuaAns .Quation i{
    cursor: pointer;
}

#FQ .QuaAns p{
    font-size: 16px;
    font-weight: 400;
    padding: 0px 0px;
    height: 0;
    overflow: hidden;
    transition: all ease 0.3s;
}



#FQ .QuaAns.active p{
    height: fit-content;
    padding: 15px 0;
}







/* make responsive */
@media (max-width: 1000px){
    #salonPhotos{
        grid-gap: 20px;
    }
    #all-reviews{
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 800px) {
    #firstOffer{
        font-size: 15px;
    }
    #contactLinks button{
        width: 350px;
        cursor: default;
    }
    #mainVideo video{
        height: 200px;
    }
    #contactInfo{
        flex-direction: column-reverse;
        border-radius: 0;
        padding: 0;
    }
    #contactForm form{
        margin: 20px;
    }
    #contactLinks{
        padding-top: 20px;
    }
    #contactForm form button{    
        cursor: default;
    }
    /* #contactLinks button{
        width: 100%;
    } */
}

@media (max-width: 700px) {
    #contactForm form #headline h2{
        font-size: 22px;
        font-weight: 600;
        line-height: 33px;
    }
    #contactForm form #headline p{
        font-size: 12px;
    }
    #firstOffer{
        line-height: 15px;
        padding: 6px 10px;
    }
    #salonPhotos{
        grid-template-columns: repeat(1, 1fr);
    }
    #all-reviews{
        grid-template-columns: repeat(1, 1fr);
    }
}