/* Footer Component Styles */

.site-footer {
    background-color: #1a1a1a;
    color: white;
    margin: 0 !important;
    padding: 0;
    position: relative;
    z-index: 999999999;
    margin-top: auto !important;
    border-radius: 8px 8px 0 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    /* First column - left aligned */
    .footer-content .footer-section:nth-child(1) {
        text-align: left;
    }
    
    /* Second column - center aligned */
    .footer-content .footer-section:nth-child(2) {
        text-align: center;
    }
    
    /* Third column - right aligned */
    .footer-content .footer-section:nth-child(3) {
        text-align: right;
    }
    
    /* Contact info wrapper - right-aligned but content is left-aligned */
    .footer-content .footer-section:nth-child(3) {
        display: flex;
        justify-content: flex-end;
    }
    
    .contact-info-wrapper {
        display: inline-block;
        text-align: left;
    }
}

.footer-section h3 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    text-transform: uppercase;
}

/* Footer logo styling - matches header font */
.footer-logo {
    font-family: 'Bitsumishi', 'Oswald', Arial, sans-serif !important;
    font-weight: bold;
    color: #bdc3c7 !important;
    text-align: left;
    line-height: 1.1;
    margin: 0 0 1rem 0;
    font-size: 18px !important;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.footer-section h4 {
    color: white;
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    text-transform: uppercase;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin: 0.5rem 0;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

/* Add padding to the tagline (second paragraph in first column) */
.footer-content .footer-section:nth-child(1) p:nth-child(2) {
    padding-left: 4px;
}

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

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

/* All footer links styling */
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2.1px;
}

.footer-section a:hover {
    color: white;
}

/* SVG icons in footer sections */
.footer-section .icon {
    color: #bdc3c7;
    margin-right: 0.5rem;
    vertical-align: middle;
    transition: color 0.3s ease;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
}

/* Special alignment for location icon - using nth-child to target the address paragraph */
.footer-section p:nth-child(3) .icon {
    transform: translateY(-1px);
}

/* Phone number styling - no hover effects */
.footer-phone {
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 2.1px;
}

/* Footer bulb logo styling */
.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.footer-bulb-logo {
    opacity: 0.5;
    height: 60px;
    width: auto;
}

/* Hover effect for email links */
.footer-section a:hover {
    color: white;
}

/* Hover effect for email icons - target the first two paragraphs specifically */
.footer-section .contact-info-wrapper p:nth-child(1):hover .icon,
.footer-section .contact-info-wrapper p:nth-child(2):hover .icon {
    color: white;
}

/* Phone number paragraph (3rd) should have no hover effects */
.footer-section .contact-info-wrapper p:nth-child(3):hover .icon,
.footer-section .contact-info-wrapper p:nth-child(3):hover .footer-phone {
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 1rem 0 1rem 0;
    margin: 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.footer-copyright {
    font-weight: bold !important;
}

.footer-copyright .icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 0.25rem;
    display: inline-flex;
    align-items: center;
}

/* Footer legal links */
.footer-legal-links {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 0.75rem;
}

.footer-legal-links a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    cursor: pointer;
}

.footer-legal-links a[data-href] {
    cursor: pointer;
}

.footer-legal-links a:hover {
    color: white;
    text-decoration: none;
}

.footer-divider {
    color: #95a5a6;
    margin: 0 0.5rem;
}

/* Footer animations - disabled to prevent layout shift */
/* .site-footer {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */