/* 
  FOOTER - PREMIER STYLE
  Clean footer with gradient background
*/

/* Footer Container */
.footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #0d0d0d, var(--primary-color, #1a1a1a));
    color: var(--white);
    padding: 3rem 0 1.5rem;
    text-align: center;
    overflow: hidden;
    margin-top: auto;
}

/* Accent Line at Top */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #c21d2e, var(--primary-color, #1a1a1a));
}

/* Footer Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Footer Info - Logo & Tagline */
.footer-info {
    text-align: center;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 0.5rem;
}

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

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.footer-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-info a:hover {
    color: var(--accent-color, #c21d2e);
}

/* Footer Nav */
.footer-nav h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--accent-color, #c21d2e);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-info p,
    .footer-links a {
        font-size: 0.95rem;
    }
}
