/* footer.css */
.site-footer{
    background-color: #333333;
    color: #ffffff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.footer-content{
    max-width: 1360px;
    margin: 0 auto;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
}

.footer-right{
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
}

.footer-nav ul{
    display: flex;
    gap: 3rem;
}

.footer-nav ul ul{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
}

.footer-nav strong{
    color: #EDEDED;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: 400;
}

.footer-nav li a{
    color: #ffffff;
}

.footer-nav li a:hover{
    text-decoration: underline;
}

.newsletter-form{
    display: flex;
    flex-direction: column;
}

.newsletter-form input{
    border-radius: 30px;
    color: #AAAAAA;
    padding: 0.75rem 1.25rem;
    width: 21.5rem;
}

.footer-social span{
    margin-bottom: 1rem;
    display: block;
}

.footer-social ul{
    display: flex;
    gap: 1.25rem;
    padding: 0;
}

.footer-social li a:hover img{
    opacity: 0.7;
}

hr{
    border: none;
    border-top: 2px solid #444444;
}

.footer-copy {
    text-align: center;
    padding: 15px;
    font-size: 1rem;
    color: #AAAAAA;
}

@media (max-width: 1000px) {
	.footer-content{
		flex-direction: column;
		gap: 2rem;
		padding: 2rem 1rem;
	}

	.footer-nav ul{
		flex-direction: column;
		gap: 2rem;
        padding: 0px;
	}

	.footer-social ul{
		gap: 1rem;
	}

	.footer-copy{
		font-size: 1rem;
		padding: 1.5rem 0 1.5rem;
	}
}
