/* Variables and fonts now loaded from variables.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
}

/* Footer Styles */
footer {
    background-color: #000000;
    color: var(--text-color);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 300px;
    align-items: center;
    text-align: center;
}

.footer-section h3 {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
}

.footer-section p {
    color: var(--text-color-light);
    margin-bottom: 0.4rem;
    line-height: 1.4;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    justify-content: center;
    align-items: center;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-color-light);
    width: 100%;
    max-width: 900px;
    font-size: 0.95rem;
}

/* Footer Legal Links */
.footer-section.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 300px;
    align-items: center;
}

.legal-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    justify-items: center;
}

.legal-links-column {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    align-items: center;
}

.footer-section.legal-links a {
    color: var(--text-color-light);
    text-decoration: none;
    transition: color var(--transition-speed);
    font-size: 0.95rem;
    padding: 0.3rem 0;
    display: block;
    opacity: 0.8;
    width: 100%;
    text-align: center;
}

.footer-section.legal-links a:hover {
    color: var(--primary-color);
    opacity: 1;
}

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

@media (max-width: 480px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .legal-links-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links a {
        font-size: 1.5rem;
    }
} 