/* Footer Styles - Mystic Healing House */
.footer {
    background: var(--mhh-teal-900);
    color: var(--mhh-gray-300);
    padding: 3rem 0 2rem 0;
    margin-top: 4rem;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Section - Logo and Social */
.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mhh-gray-300);
    text-decoration: none;
}

.footer-logo:hover {
    color: var(--mhh-teal-300);
    transition: color 0.3s ease;
}

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

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background: var(--mhh-teal-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mhh-white);
    font-size: 1rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--mhh-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mhh-gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--mhh-teal-300);
    color: var(--mhh-white);
    transform: translateY(-2px);
}

.scroll-top {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--mhh-gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mhh-gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
}

.scroll-top:hover {
    background: var(--mhh-teal-500);
    color: var(--mhh-white);
    transform: translateY(-2px);
}

/* Middle Section - Navigation */
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--mhh-gray-300);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.footer-nav a:hover,
.footer-nav a.active {
    color: var(--mhh-teal-300);
}

/* Separator Line */
.footer-separator {
    height: 1px;
    background: var(--mhh-gray-700);
    margin: 0 auto 2rem auto;
    max-width: 80%;
}

/* Bottom Section - Copyright */
.footer-copyright {
    text-align: center;
    color: var(--mhh-gray-400);
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0.25rem 0;
}

.powered-by {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.powered-by a {
    color: var(--mhh-salmon);
    /* Using the existing salmon color variable */
    text-decoration: none;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: var(--mhh-salmon-dark);
    /* Using the existing dark salmon color variable */
    text-decoration: underline;
}

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

    .footer-social {
        gap: 0.75rem;
    }

    .social-icon,
    .scroll-top {
        width: 2.25rem;
        height: 2.25rem;
    }

    .footer-nav {
        gap: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .footer-nav a {
        padding: 0.25rem 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1.5rem 0;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-nav {
        gap: 1rem;
    }
}