﻿/*FOOTER STYLES*/
.footer {
    background: linear-gradient(90deg, #1a2d22 0%, #15251d 25%, #101d18 50%, #0b1513 75%, #060d0e 100%);
    grid-column: 1 / 1;
    padding: 20px 60px;
    color: white;
    text-align: center;
    font-size: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

    .footer-links a {
        color: white;
        text-decoration: none;
        opacity: 0.8;
    }

        .footer-links a:hover {
            color: #d4a574;
            opacity: 1;
        }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .social-icon:hover {
        background: #d4a574;
        transform: translateY(-3px);
    }
