/* Footer Styles */
.site-footer {
    background: #1a202c; /* Dark by default */
    color: #e2e8f0;
    padding: 40px 20px;
    margin-top: auto; /* Push to bottom */
    width: 100%;
    border-top: 4px solid var(--primary-color, #2c5282);
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.telegram-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.telegram-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.telegram-item:hover {
    transform: translateY(-5px);
}

.telegram-icon {
    width: 60px;
    height: 60px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid #4a5568;
    transition: all 0.3s ease;
    color: #4299e1;
    font-size: 28px;
}

.telegram-item:hover .telegram-icon {
    background: #4299e1;
    color: white;
    border-color: #4299e1;
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.4);
}

.telegram-text {
    font-size: 1rem;
    color: #a0aec0;
    font-weight: 600;
}

.telegram-item:hover .telegram-text {
    color: #4299e1;
}

.footer-bottom {
    width: 100%;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #718096;
    font-size: 0.9rem;
}

/* Ensure content wrapper allows footer to be at bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Dark Mode Adjustments if needed, though footer is already dark */
.dark-mode .site-footer {
    background: #0f1419;
    border-top-color: var(--primary-color);
}
