/* footer.css - Shared footer styles for MineMasters.pro */

#site-footer {
    background: rgba(20, 26, 44, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    text-align: center;
    margin-top: auto;
    font-size: 0.9rem;
    position: relative;
    width: 100%;
    opacity: 0.8;
    z-index: 1; 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#site-footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    height: 30px !important;
    width: auto;
    vertical-align: middle;
    max-height: 30px;
}

.footer-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color, #e9e9f0);
}

.footer-description {
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--text-color, #e9e9f0);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--highlight-color, #f04578);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--accent-teal, #36d6c3);
}

.footer-separator {
    opacity: 0.5;
    margin: 0 0.25rem;
}

/* Desktop layout - single line for larger screens */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-brand {
        margin-right: 0.5rem;
    }
    
    .footer-description {
        margin: 0 0.5rem;
    }
    
    .footer-links {
        margin-left: 0.5rem;
    }
    
    /* Add separators between sections on desktop */
    .footer-brand::after {
        content: '|';
        margin-left: 1rem;
        opacity: 0.5;
    }
    
    .footer-description::after {
        content: '|';
        margin-left: 1rem;
        opacity: 0.5;
    }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    #site-footer {
        padding: 1.25rem 1rem;
    }
    
    .footer-content {
        gap: 0.5rem;
    }
    
    .footer-logo {
        height: 24px !important;
        max-height: 24px;
    }
    
    .footer-title {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
        text-align: center;
        line-height: 1.4;
    }
    
    .footer-links {
        font-size: 0.8rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    #site-footer {
        padding: 1rem 0.75rem;
    }
    
    .footer-logo {
        height: 20px !important;
        max-height: 20px;
    }
    
    .footer-title {
        font-size: 0.85rem;
    }
    
    .footer-description {
        font-size: 0.75rem;
    }
    
    .footer-links {
        font-size: 0.75rem;
    }
    
    .footer-links a {
        padding: 0.25rem 0.5rem;
    }
}