#home {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: calc(100vh + 70px);
    background: url('../../assets/images/header-page-gallery.png') no-repeat center center;
    background-size: cover;
    margin-top: 0;
}

@media screen and (max-width: 500px) {
    #home {
        background-attachment: scroll;
    }
}

.nav-item-4 a{
    color: var(--color-darkblue-1);
    border-bottom: 3px solid var(--color-brown-1);
}

#cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
}

#cta .cta-title {
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 4rem;
    color: #fff;
}

#cta .cta-description {
    width: 75%;
    font-family: "Lora", sans-serif; 
    font-size: 1.5rem;
    color: #fff;
    font-weight: 200;
    margin-top: 1%;
    text-align: center;
}

@media screen and (max-width: 850px) {
    #cta .cta-title {
        width: auto;
        font-size: 3.2rem;
        text-align: center;
    }

    #cta .cta-description {
        width: auto;
        margin-top: 5%;
        font-size: 1.25rem;
        text-align: center;
    }
}

@media screen and (max-width: 400px) {
    #cta .cta-title {
        width: auto;
        font-size: 2.9rem;
        text-align: center;
    }

    #cta .cta-description {
        width: auto;
        margin-top: 5%;
        font-weight: 300;
        font-size: 1.05rem;
        text-align: center;
    }
}

#cta_buttons {
    display: flex;
    margin-top: 2%;
}

#cta_buttons a{
    text-decoration: none;
    color: #1d1d1d;
}

#phone_button {
    display: flex;
    align-items: center;
    gap: 8px; 
    border-radius: 26px;
    margin-top: 40%; 
    background-color: #fff;
    padding: 8px 14px;
    font-weight: 500;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

#phone_button:hover {
    box-shadow: 0px 0px 12px 8px rgba(226, 223, 223, 0.1);

}

.social-media-buttons {
    margin-top: 2%;
}


#introduction .texts {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#introduction .description {
    text-align: justify;
    width: 80%;
}


#full_img1 {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    min-height: calc(100vh);
    background: url('../../assets/images/full-img-page-gallery.png') no-repeat center center;
    background-size: cover;
    filter: brightness(50%);
    margin-top: 0;
}

@media screen and (max-width: 1000px) {
    #full_img1 {
        min-height: calc(55vh);
    }
}


#show_photos .informations {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

#show_photos .item-1, .item-3{
    flex-direction: row-reverse;
}


#show_photos .informations .large {
    width: 40%;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
}

#show_photos .img-texts {
    width: 45%;
    display: flex;
    flex-direction: column; 
}

#show_photos .description {
    width: 50%;
}

#show_photos .btn-default {
    margin-top: 20%;
}


@media screen and (max-width: 800px) {
    #show_photos .informations {
        width: auto;
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }

    #show_photos .informations .large {
        width: 60%;
        display: flex;
        justify-content: center;
    }
    
    #show_photos .img-texts {
        width: 100%;
        display: flex;
        flex-direction: column; 
    }

    #show_photos .texts {
        width: 100%;
    }

    #show_photos .description {
        width: 100%;
    }

    #show_photos .btn-default {
        margin-top: 10%;
    }

}


#full_img2 {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    min-height: calc(100vh);
    background: url('../../assets/images/full-img-2-page-gallery.png') no-repeat center center;
    background-size: cover;
    filter: brightness(50%);
    margin-top: 0;
}

@media screen and (max-width: 1000px) {
    #full_img2 {
        min-height: calc(55vh);
    }
}


#full_img3 {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    min-height: calc(100vh);
    background: url('../../assets/images/full-img-2-page-gallery.png') no-repeat center center;
    background-size: cover;
    filter: brightness(50%);
    margin-top: 0;
}

@media screen and (max-width: 1000px) {
    #full_img3 {
        min-height: calc(55vh);
    }
}

#contact {
    background-color: var(--color-brown-1);
}

#contact .title {
    color: #fff;
    text-align: center;
}

#contact .informations {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact .description {
    width: 50%;
    color: #fff;
    text-align: center;
}

#contact form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 5%;
}

#contact .contact-inputs, .btn-send {
    width: 30%;
    height: 40px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    background-color: var(--color-primary-1);
    color:var(--color-brown-1);
    border-radius: 26px;
    transition: box-shadow 0.5s ease;
    
}

#contact .contact-inputs:hover {
    box-shadow: 0px 0px 14px 8px rgba(226, 223, 223, 0.3);
    width: 30.3%;
}

#contact .btn-send {
    padding-left: 0;
    font-size: 1.25rem;
    font-weight: 700;
    background-color: var(--color-darkblue-1);
    color: #fff;
    cursor: pointer;
    transition: 0.5s ease;
}

#contact .btn-send:hover {
    box-shadow: 0px 0px 14px 8px rgba(226, 223, 223, 0.3);
    color: var(--color-darkblue-1);
    background-color: #fff;
}


@media screen and (max-width: 1000px) {
    #contact .contact-inputs, .btn-send {
        width: 80%;
    }

    #contact .description {
        width: 90%;
    }

    #contact .contact-inputs:hover {
        width: 80.3%;
    }

}