/* Footer Styling */
.footer {
    background-color: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 80px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    height: auto;
}

/* Left Side: Copyright */
.footer-left {
    flex: 1;
    text-align: left;
    font-size: 1rem;
    opacity: 0.7;
}

/* Right Side: Social Links */
.footer-right {
    flex: 1;
    text-align: right;
}

/* "Follow Us" Title */
.footer-right h3 {
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Social Media Icons */
.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.social-links img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease-in-out;
}

.social-links a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 600px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-right {
        text-align: center;
        margin-bottom: 15px;
    }

    .social-links {
        justify-content: center;
    }
}
