﻿
/* FOOTER */
.custom-footer {
    background: #111827;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 50px;
}

.custom-footer .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fbbf24;
    font-weight: 700;
}

.footer-column p {
    margin-bottom: 15px;
    color: #cbd5e1;
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

    .footer-column ul li {
        margin-bottom: 12px;
    }

        .footer-column ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: 0.3s;
            word-break: break-word;
        }

            .footer-column ul li a:hover {
                color: #fbbf24;
                padding-left: 5px;
            }

/* SOCIAL */

.social-links {
    display: flex;
    margin-top: 20px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
        margin-right: 12px;
        color: white;
        transition: 0.3s;
        text-decoration: none;
    }

        .social-links a:hover {
            background: #fbbf24;
            color: #000;
            transform: translateY(-3px);
        }

/* DISCLAIMER */

.footer-disclaimer {
    background: #000;
    color: #d1d5db;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 14px;
}

/* COPYRIGHT */

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
    font-size: 14px;
}

/* MOBILE */

@media (max-width:768px) {

    .footer-content {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}

/*body {
    padding-bottom: 60px;
}
*/
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
}

