@import url(variables.css);
#about-n-contact{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-large);
    margin-top: 70px;
    padding: 50px 0;
}

#about-n-contact a{
    font-family: var(--text-font);
}

.search{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-small);
}

.search form{
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.search form input:required{
    width: 60%;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.search form select{
    padding: 13px;
    border: none;
    cursor: pointer;
    max-width: 35%;
}

.search form input:required:focus, .search form select:focus{
    outline: none;
}
.search form button{
    max-width: 15%;
    width: 100px;
    padding: 14px;
    cursor: pointer;
    border: none;
    background-color: #fff;
    font-size: 23px;
}

.about-page-header{
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-small);
    color: #fff;
}

.about-page-header #page-banner{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 60%;
    filter: blur(1px) brightness(40%);
    z-index: -1;
}


.about-page-header .links{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: var(--spacing-small);
    flex-wrap: wrap;
    padding: 30px 0px;
}

.about-page-header .links a{
    text-decoration: none;
    color: #fff;
    max-width: 45%;
    width: 150px;
    text-align: center;
    padding: 10px;
}

.about-page-header .links #main-link{
    border-bottom: 1px solid var(--secondary-color);
}


#about-n-contact .about, #about-n-contact .contact{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: var(--spacing-medium);
    padding: var(--spacing-small);
}

.about .text, .contact .text{
    max-width: 100%;
    width: 500px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
    padding: var(--spacing-small);
}

.about img{
    max-width: 100%;
    width: 500px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about .text a, .contact .text .shop-link, .contact-response .response a{
    max-width: 80%;
    width: 150px;
    padding: 13px;
    text-decoration: none;
    background-color: var(--primary-color);
    border-radius: 3px;
    color: #fff;
    text-align: center;
}


.contact .text .socials{
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-small);
}

.contact .text .socials a{
    text-decoration: none;
}

.contact .text .socials a i{
    font-size: 25px;
}

.contact .text .socials a:nth-child(1){
    color: rgb(226, 43, 125);
}

.contact .text .socials a:nth-child(2){
    color: rgb(0, 0, 0);
}

.contact .text .socials a:nth-child(3){
    color: rgb(0, 70, 234);
}

.contact .text .socials a:nth-child(4){
    color: rgb(0, 149, 255);
}


.form-wrapper{
    max-width: 100%;
    width: 500px;
    height: auto;
    padding: 30px var(--spacing-small);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
}

.form-wrapper form{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
    font-family: var(--text-font);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: var(--spacing-small);
    border-radius: 5px;
}

.form-wrapper form input:required, .form-wrapper form select{
    width: 90%;
    padding: 13px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}
.form-wrapper form input:required:focus, .form-wrapper form select:focus, .form-wrapper form textarea:focus{
    outline: none;
}

.form-wrapper form textarea{
    width: 90%;
    height: 150px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    padding: 13px;
}

.form-wrapper form button{
    max-width: 80%;
    width: 150px;
    padding: 13px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    background-color: var(--primary-color);
    color: #fff;
}

.contact-response{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    background-color: rgba(202, 203, 255, 0.555);
    padding: var(--spacing-small);
    z-index: 8;
}

.contact-response.remove{
    display: none;
}

.contact-response .response{
    max-width: 100%;
    width: 500px;
    padding: 40px var(--spacing-small);
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

