/* Modern Footer */
.modern-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 40px 0 0 0;
    margin-top: 60px;
    border-top: 3px solid #c00;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-section h3 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Logo i opis */
.footer-brand .footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(1.2);
}

.footer-tagline {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Menu linki */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #c00;
}

/* Social media */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: #ccc;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #c00;
}

/* Copyright */
.footer-bottom {
    background: #0d0d0d;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* Tablet */
@media only screen and (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
}

/* Mobile */
@media only screen and (max-width: 768px) {
    .modern-footer {
        padding: 30px 0 0 0;
        margin-top: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px 20px 15px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-brand .footer-logo {
        max-width: 150px;
    }
    
    .footer-section h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 15px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}





