/* Footer Styles - Custom footer for the site */
/* These styles are specific to the new footer design and override the default footer styles */

/* Override the default footer styles with our custom design */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: 40px;
    padding: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 40px 0 20px 0;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
    border-top: 1px solid #34495e;
    color: #ecf0f1;
}

/* Left Section - Icons and Links */
.footer-section {
    padding: 0 15px;
}

.left-section {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: space-between;
}

.left-column-1, .left-column-2 {
    width: 48%;
}

.footer-item {
    margin-bottom: 8px;
    padding-right: 10px;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #3498db;
}

.footer-link i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
    color: #95a5a6;
}

/* Center Section - Video Links */
.center-section {
    flex: 2;
    min-width: 300px;
}

.center-section h3 {
    color: #3498db;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-list li {
    margin-bottom: 6px;
    color: #95a5a6;
    font-size: 13px;
}

.footer-list li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-list li a:hover {
    text-decoration: underline;
    color: #3498db;
}

/* Right Section - Categories */
.right-section {
    flex: 1.5;
    min-width: 250px;
}

.right-section h3 {
    color: #3498db;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.categories-list li {
    line-height: 1.6;
    color: #95a5a6;
}

.categories-list a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    margin: 0 2px;
}

.categories-list a:hover {
    text-decoration: underline;
    color: #3498db;
}

.rta-logo {
    margin-top: 20px;
    text-align: right;
}

.rta-logo img {
    max-width: 80px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .left-section {
        order: 3;
    }
    
    .left-column-1, .left-column-2 {
        width: 48%;
    }
    
    .footer-item {
        width: 100%;
    }
    
    .center-section {
        order: 1;
    }
    
    .right-section {
        order: 2;
    }
    
    .rta-logo {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .left-section {
        flex-direction: column;
    }
    
    .left-column-1, .left-column-2 {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .footer-link {
        font-size: 13px;
    }
    
    .footer-list li a, 
    .categories-list a {
        font-size: 13px;
    }
    
    .center-section h3,
    .right-section h3 {
        font-size: 15px;
    }
}
