@import url('https://fonts.googleapis.com/css2?family=Erica+One&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --body-font: 'Lato', sans-serif;
    
    --brand-colour: #FFB347;
    --charcol: #1F2937;

    
    --font-family: var(--body-font);

    --background: var(--charcol);
    --font-colour: #eee;
    --light-grey: #9CA3AF;
    --dark-bg: #111827;
}

/* Global */
body {
    font-family: var(--body-font);
    background: var(--dark-bg);
    color: var(--font-colour);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--brand-colour);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover { opacity: 0.8; }

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 179, 71, 0.2);
    padding: 60px 40px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--font-colour);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.footer-section h3::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--brand-colour);
    border-radius: 2px;
}

.footer-section p {
    font-size: 14px;
    color: var(--light-grey);
    margin-bottom: 12px;
    line-height: 1.6;
    text-align: left;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 8px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 179, 71, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: small;
    color: var(--light-grey);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--light-grey);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-colour);
}

@media (max-width: 640px) {
    footer {
        padding: 40px 24px 30px;
        margin-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}