/* Clean Logo and Footer Styles - No Animations */

/* Clean Logo Styles */
.logo a {
    display: flex;
    align-items: center;
    font-weight: 700;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    transition: none;
}

/* Clean Footer Styles */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    margin-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.footer-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon img {
    height: 30px;
    width: auto;
    transition: none;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
    
    .footer-icon img {
        height: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* Logo Hover - Subtle Only */
.logo a:hover {
    text-decoration: none;
}

/* Clean Footer Enhancement */
.footer-content {
    background: #2c3e50;
}