/**
 * HyzenPro Footer Styles
 * 
 * 4-column grid footer with brand and social links
 * Based on the hyzenpro-complete landing page design
 * 
 * @package HyzenPro
 * @since 1.0.0
 */

/* ==========================================================================
   Footer Base
   ========================================================================== */

.hyzen-footer {
    padding: 5rem 4rem 3rem;
    background: var(--color-black, #000000);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white, #ffffff);
}

.hyzen-footer__container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ==========================================================================
   Footer Content Grid
   ========================================================================== */

.hyzen-footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

/* ==========================================================================
   Brand Column
   ========================================================================== */

.hyzen-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hyzen-footer__logo-link {
    display: inline-block;
    line-height: 0;
}

.hyzen-footer__logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.hyzen-footer__logo:hover {
    transform: scale(1.05);
}

.hyzen-footer__description {
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-gray-300, #cccccc);
    max-width: 350px;
    margin: 0;
}

/* ==========================================================================
   Links Columns
   ========================================================================== */

.hyzen-footer__links h4 {
    font-family: var(--font-headline, 'Bebas Neue', cursive);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--color-white, #ffffff);
    text-transform: uppercase;
}

.hyzen-footer__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hyzen-footer__links li {
    margin: 0;
    padding: 0;
}

.hyzen-footer__links a {
    color: var(--color-gray-300, #cccccc);
    text-decoration: none;
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 2.5;
    transition: all 0.3s ease;
    display: inline-block;
}

.hyzen-footer__links a:hover {
    color: var(--color-white, #ffffff);
    transform: translateX(5px);
}

/* ==========================================================================
   Footer Bottom
   ========================================================================== */

.hyzen-footer__bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hyzen-footer__copyright {
    color: var(--color-gray-300, #cccccc);
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-size: 0.9rem;
    font-weight: 300;
}

/* ==========================================================================
   Social Links
   ========================================================================== */

.hyzen-footer__social {
    display: flex;
    gap: 2rem;
}

.hyzen-footer__social a {
    color: var(--color-gray-300, #cccccc);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.hyzen-footer__social a:hover {
    color: var(--color-white, #ffffff);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
}

.hyzen-footer__social-icon {
    font-family: var(--font-body, 'Outfit', sans-serif);
    font-weight: 600;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1200px) {
    .hyzen-footer {
        padding: 4rem 3rem 2rem;
    }

    .hyzen-footer__content {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .hyzen-footer {
        padding: 3rem 2rem 2rem;
    }

    .hyzen-footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .hyzen-footer__brand {
        grid-column: 1 / -1;
    }

    .hyzen-footer__description {
        max-width: 100%;
    }

    .hyzen-footer__bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hyzen-footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .hyzen-footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hyzen-footer__links {
        text-align: center;
    }

    .hyzen-footer__links a:hover {
        transform: none;
    }

    .hyzen-footer__social {
        gap: 1rem;
    }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */

.hyzen-footer__links a:focus,
.hyzen-footer__social a:focus {
    outline: 2px solid var(--color-white, #ffffff);
    outline-offset: 4px;
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .hyzen-footer {
        background: none;
        color: #000;
        border-top: 1px solid #000;
    }

    .hyzen-footer__social {
        display: none;
    }
}