/* footer-style.css */
.main-footer-dark {
    background: #0b0b0b;
    color: #ffffff;
    padding: 60px 0 0 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
    border-top: 3px solid #e81717;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    /* Forțăm coloana să își alinieze conținutul la stânga pe desktop */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-title {
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    /* SCHIMBARE CHEIE: inline-block face containerul exact cât textul */
    display: inline-block; 
}

.footer-title::after {
    content: '';
    position: absolute;
    /* Aliniere sub text */
    left: 0; 
    bottom: -10px;
    width: 45px;
    height: 3px;
    background: #e81717;
}

.footer-text {
    font-size: 17px; /* Text mărit conform cerinței */
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: left;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #e81717;
    transform: translateX(8px);
}

.footer-contact-info {
    text-align: left;
}

.footer-contact-info p {
    font-size: 17px;
    color: #cccccc;
    margin: 10px 0;
}

.broadcast-box {
    background: #151515;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #e81717;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.broadcast-bitrate {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 5px;
}

.footer-bottom {
    background: #000000;
    padding: 25px 0;
    margin-top: 50px;
    border-top: 1px solid #222;
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    font-size: 16px;
    color: #999;
    margin: 0;
}

/* Ajustări pentru Mobil */
@media (max-width: 768px) {
    .footer-col {
        align-items: center; /* Centrează totul pe mobil */
        text-align: center;
    }
    
    .footer-container {
        flex-direction: column;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-text, .footer-links, .footer-contact-info {
        text-align: center;
    }

    .footer-links a:hover {
        transform: none;
    }
}