/* Footer */
footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-white);
    bottom: 0;
    left: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-links a {
    color: var(--primary-white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #bbb;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
    flex-wrap: wrap;
}

.copyright {
    flex: 1;
    min-width: 200px;
}

.visit-counter {
    margin: 0 1rem;
    min-width: 150px;
    text-align: center;
}

.admin-button {
    text-align: right;
    min-width: 100px;
}

.admin-btn {
    background: transparent;
    color: #666;
    border: 1px solid #666;
    border-radius: 3px;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    background: #666;
    color: var(--primary-white);
}