/* Styles for the footer */
.footer {
    background: rgb(30, 30, 30);
    width: 100%;
    margin: 0;
    padding: 0;
}

.title_segment {
    padding-top: 80px;
}

/* Style for section titles */
.footer-center h2 {
    color: var(--white);
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 20px;
    font-weight: 600;

}

/* About style */
/* .footer-center .chef {
    color: var(--white);
    font-size: 19px;
    line-height: 28.5px;
    vertical-align: baseline;
    letter-spacing: normal;
    word-spacing: 0px;
    margin: 20px 0px 10px;
    padding: 0px;
    font-weight: 700;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    text-decoration: none solid var(--white);
    text-align: start;
    text-indent: 0px;
} */

.footer-center .description {
    color: var(--grey40);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 32px;
    vertical-align: baseline;
    letter-spacing: normal;
    word-spacing: 0px;
    margin: 0px 0px 16px;
    padding: 0px;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    text-decoration: none solid var(--grey40);
    text-align: left;
    text-indent: 0px;
}

/* Styles for the section 2 of navigation links */
.footer-center .footer-links {
    list-style: none;
}

.footer-center .footer-links li {
    display: block;
    margin-bottom: -10px;
    outline: none;
}

.footer-center .footer-links a {
    color: var(--grey40);
    outline: none;
    outline: none;
    padding-left: 0;
}

.footer-center .footer-links a:hover {
    color: var(--rosewood);
    text-decoration: none;
}

/* Button email style */
.email-form {
    position: relative;
    overflow: hidden;
}

.email-form input {
    width: 100%;
    padding: 17.5px 28px;
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
}

.email-form input:focus {
    border-color: var(--rosewood);
}

.email-form button {
    position: absolute;
    right: 0;
    background: var(--rosewood);
    padding: 20px;
    border: 1px solid var(--rosewood);
    top: 0;
}

.email-form button i {
    color: var(--white);
    font-size: 16px;
}

/* Styles for section 3 and 4 */
.information-item {
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.info-icon {
    margin-right: 10px;
    color: var(--rosewood);
    font-size: 18px;
    padding-right: 10px;
    font-weight: 400;
    text-align: center;
    line-height: 18px;
}

.info-content {
    flex: 1;
}

.info-content .title {
    display: block;
    color: var(--grey40);
    font-weight: normal;
    font-size: 15px;
    line-height: 2;
    font-family: 'Poppins', sans-serif;
    line-height: 28.5px;
    vertical-align: baseline;
    font-weight: 400
}

.info-content .content {
    display: inline-block;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 28.5px;
    font-weight: 600;
}

/* Copyright section */
.copyright {
    background-color: var(--grey70);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-basis: 0;
    height: 80px;
    text-align: center;
}

.copyright>p {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 28.5px;
    padding: 0px 15px;
    font-weight: 400;
}

@media screen and (max-width: 1150px) {
    .footer {
        padding-top: 10px;
    }

    .footer .row {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 70px;
        flex-grow: 1;
        padding-left: 10px;
    }

    .footer .row>div {
        width: 100%;
    }

    .title_segment {
        padding-top: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        cursor: pointer;
        transition: box-shadow 0.2s ease-in-out;
        box-shadow: 0 1px 0 var(--lightPink);
    }

    .title_segment:hover {
        box-shadow: 0 2px 0 var(--rosewood);
    }

    .title_segment i {
        width: 20px;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: rotate(0);
        transition: transform 0.2s ease-in-out;
    }

    .footer-center h2 {
        width: 100%;
        height: 20px;
    }

    .footer-center .content_segment {
        display: none;
    }

    .footer-center.open .title_segment {
        box-shadow: 0 2px 0 var(--rosewood);
    }

    .footer-center.open .title_segment i {
        transform: rotate(180deg);
    }

    .footer-center.open .content_segment {
        display: block;
        animation: fadeIn 0.5s ease-in-out;
    }

    .footer-center.close .content_segment {
        animation: fadeOut 0.5s ease-in-out;
        display: none;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeOut {
        from {
            opacity: 1;
        }

        to {
            opacity: 0;
        }
    }

}


@media screen and (min-width: 1151px) {
    .footer {
        padding-top: 5px;
    }

    .footer .row {
        justify-content: center;
        max-width: 1150px;
        margin: 0 auto;
        margin-bottom: 70px;
        flex-grow: 1;
        padding-left: 50px;
    }

    .footer .row>div {
        flex-basis: 25%;
    }

    .footer .row>div.small {
        width: 20%;
    }
}
