/**
 Updated Footer — dark theme to match intro
*/
.footer {
    background-color: #2C292C; /* dark charcoal */
    background-image: none; /* remove the white background image */
    padding: 20px 0;
    text-align: center;
    align-items: center;
    border-top: 1px solid #000;

    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #F4EDE4; /* soft ivory text */
}

h3 {
    padding-bottom: 15px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    margin: 10px;
}

/* Footer section titles */
.footer-section h3 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #F4EDE4;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
}

/* Footer text and links */
.footer-section p,
.footer-section ul {
    padding: 0;
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: #F4EDE4;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

/* Links inside footer */
.footer-section ul li a {
    color: #F4EDE4;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Hover accent */
.footer-section ul li a:hover {
    color: #ffa87d;
    text-shadow: 0 0 6px rgba(255, 168, 125, 0.8);
}

/* Footer bottom (© area) */
.footer-bottom {
    background-color: #1f1b1f;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8rem;
    border-top: 1px solid #251818;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    color: #F4EDE4;
}
