/* Footer Section */
.footer {
    background: var(--text-dark);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-direction: column;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-tagline {
    font-family: 'Caveat', cursive;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-accent);
    margin: 12px 0 0 0;
    letter-spacing: 0.5px;
}

/* Footer Contact */
.footer-contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-address {
    margin-bottom: 8px;
}

.footer-email a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: var(--primary-accent);
    text-decoration: underline;
}

.footer-mobile a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-mobile a:hover {
    color: var(--primary-accent);
    text-decoration: underline;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 50px 0 25px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-logo img {
        max-width: 150px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-logo img {
        max-width: 140px;
    }

    .footer-contact {
        text-align: center;
        width: 100%;
    }

    .footer-contact p {
        font-size: 14px;
    }

    .footer-copyright p {
        font-size: 13px;
    }
}