.ethnic-footer {
    background: #f6f4ee;
    color: #7a1f3d;
    font-family: Cambria, Georgia, 'Times New Roman', serif;
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    padding: 0 20px;
}

/* Footer Sections */
.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 700;
    color: #7a1f3d;
}

.footer-section p,
.footer-section li,
.footer-section a {
    font-size: 14px;
    color: #4b2a2a;
    line-height: 1.6;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a:hover {
    color: #f7b72c;
    transition: 0.3s;
}

/* Logo in footer */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #f7b72c;
    margin-bottom: 12px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 22px;
    color: #7a1f3d;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f7b72c;
}

/* Newsletter */
.footer-newsletter {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #e0cfc2;
    border-bottom: 1px solid #e0cfc2;
    margin-top: 40px;
}

.footer-newsletter h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #7a1f3d;
}

.footer-newsletter form {
    display: flex;
    max-width: 400px;
    margin: auto;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 30px;
    border: 1px solid #e0cfc2;
    outline: none;
}

.footer-newsletter button {
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    background: #7a1f3d;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

.footer-newsletter button:hover {
    background: #f7b72c;
    color: #7a1f3d;
    transition: 0.3s;
}

/* Bottom Copyright */
.footer-bottom {
    text-align: center;
    padding-bottom: 20px;
    font-size: 13px;
    color: #4b2a2a;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

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

    .footer-newsletter input,
    .footer-newsletter button {
        width: 100%;
    }
}

.footer-dev {
    text-align: center;
    padding: 5px 0;
    border-top: 1px solid #e0cfc2;
    background: #f6f4ee;
}

.footer-dev .dev-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #7a1f3d;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-dev .dev-link:hover {
    color: #f7b72c;
}

.footer-dev .dev-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 5px;
}