footer {
font-family: 'Montserrat', sans-serif;
background-color: #000000;
color: #fff;
padding: 40px 0;
}
.footer-container {
display: grid;
grid-template-columns: 15% 25% 20% 20%;
gap: 30px;
justify-content: space-between;
flex-wrap: wrap;
max-width: 1250px;
margin: 0 auto;
}
.footer-section {
flex: 1;
margin: 10px 0px;
text-align: left;
overflow: hidden;
}
.footer-container .footer-section.contact {
white-space: nowrap;
}
.footer-container .footer-section.contact ul li {
display: flex;
align-items: center;
gap: 8px;
white-space: nowrap;
}
.footer-section h3 {
margin-bottom: 20px;
font-size: 18px;
font-weight: 700;
display: inline-block;
position: relative;
}
.footer-section h3::after {
content: "";
position: absolute;
left: 0;
bottom: -3px;
width: 100%;
height: 1px;
background-color: white;
}
.footer-section p,
.footer-section ul {
margin: 0;
font-size: 14px;
line-height: 1.6;
}
.footer-section ul {
list-style: none;
padding: 0;
}
.footer-section ul li {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
}
.footer-section ul li a {
color: #fff;
text-decoration: none;
font-size: 14px;
}
.footer-section ul li a:hover {
color: #c19a5f;
}
.footer-section ul li i {
font-size: 16px;
}
.footer-section .form-news {
display: flex;
margin-top: 30px;
justify-content: flex-start;
}
.footer-section .form-news input[type="email"] {
padding: 8px;
border: 1px solid #c19a5f;
border-radius: 5px 0 0 5px;
flex: 1 1 60%;
font-size: 14px;
color: #333;
transition: border-color 0.3s ease;
margin-bottom: 0;
font-family: inherit;
max-width: 200px;
}
.footer-section .form-news input[type="email"]:focus {
border-color: #b58c4e;
outline: none;
}
.footer-section .form-news button {
padding: 8px;
border: none;
background-color: #c19a5f;
color: #fff;
border-radius: 0 5px 5px 0;
cursor: pointer;
font-size: 14px;
font-family: inherit;
flex: 1 1 30%;
transition: background-color 0.3s ease, transform 0.3s ease;
white-space: nowrap;
max-width: 40px;
min-width: 50px;
}
.footer-section .form-news button:hover {
background-color: #b58c4e;
}
.footer-bottom-container {
background-color: #000000;
border-top: 1px solid #ffffff;
margin-top: 30px;
}
.footer-bottom-container a {
    color: #FFFFFF;
}
.footer-bottom {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
margin-top: 30px;
}
.footer-bottom p {
margin: 0;
padding-left: 20px;
}
.social-icons {
display: flex;
align-items: center;
gap: 5px;
}
.footer-bottom .social-icons a {
color: #fff;
margin-right: 10px;
font-size: 16px;
}
.footer-bottom .social-icons a:hover {
color: #c19a5f;
}
.footer-bottom .social-icons {
display: flex;
align-items: center;
}
#newsletter-message {
margin-top: 10px;
font-size: 0.9rem;
font-weight: 500;
padding: 10px 15px;
border-radius: 5px;
display: none;
transition: all 0.3s ease;
opacity: 0;
transform: translateY(10px);
font-family: inherit;
}
#newsletter-message.success {
display: block;
color: #155724;
background-color: #d4edda;
border: 1px solid #c3e6cb;
opacity: 1;
transform: translateY(0);
}
#newsletter-message.error {
display: block;
color: #721c24;
background-color: #f8d7da;
border: 1px solid #f5c6cb;
opacity: 1;
transform: translateY(0);
}
@media (max-width: 1024px) {
.footer-container {
flex-direction: row;
flex-wrap: wrap;
}
.footer-section {
flex: 0 0 48%;
margin: 10px 0;
padding: 0 20px;
}
.footer-section.newsletter {
flex: 0 0 48%;
margin-top: 0;
}
}
@media (max-width: 768px) {
.footer-container {
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto;
}
.footer-section {
flex: 0 0 48%;
margin: 10px 0;
padding: 0 20px;
}
.footer-section.newsletter {
flex: 0 0 48%;
margin-top: 0;
}
}
@media (max-width: 480px) {
.footer-container {
grid-template-columns: 100%;
    grid-template-rows: auto auto auto auto;
}
.footer-section {
flex: 1 1 100%;
margin: 10px 0;
padding: 0 20px;
}
.footer-section h3 {
font-size: 16px;
}
.footer-section p,
.footer-section ul {
font-size: 12px;
}
.footer-section .form-news input[type="email"],
.footer-section .form-news button {
font-size: 12px;
padding: 8px;
}
.footer-section .form-news input[type="email"] {
flex: 1 1 70%;
}
.footer-section .form-news button {
flex: 1 1 25%;
}
.footer-bottom {
flex-direction: column;
text-align: center;
}
.footer-bottom .social-icons a {
font-size: 14px;
}
}
