/* =============================================================================
   HEALIX LANDING PAGE STYLES
   Hero Section, Features Showcase, How It Works, Testimonials, Footer
   ============================================================================= */

/* -------------------------------------------------------------------------
   Hero Section (Temporary placeholder for current welcome content)
   ------------------------------------------------------------------------- */

.welcome-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 10rem 0 6rem;
    color: white;
    text-align: center;
    margin-top: 5rem; /* Account for fixed navbar */
}

.welcome-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.welcome-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.welcome-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.welcome-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 2rem;
    font-weight: 600;
    background: white;
    color: var(--primary-color);
    border: none;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.welcome-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-dark);
}

/* -------------------------------------------------------------------------
   Responsive Design
   ------------------------------------------------------------------------- */

@media (max-width: 768px) {
    .welcome-hero {
        padding: 8rem 0 4rem;
    }

    .welcome-hero h1 {
        font-size: 2rem;
    }

    .welcome-hero .lead {
        font-size: 1rem;
    }

    .welcome-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* -------------------------------------------------------------------------
   Healix Footer Styles
   ------------------------------------------------------------------------- */

.healix-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.footer-brand i {
    font-size: 1.75rem;
    color: var(--primary-light);
}

.footer-logo {
    height: 1.75rem;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-800);
    color: var(--gray-300);
    border-radius: 50%;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--primary-light);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.footer-contact li i {
    color: var(--primary-light);
    font-size: 1.125rem;
    margin-top: 0.125rem;
}

.footer-contact li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
}

.footer-copyright p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

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

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-light);
}

.footer-legal .divider {
    color: var(--gray-700);
}

/* -------------------------------------------------------------------------
   Responsive Footer
   ------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}
