/* Bitek main stylesheet */

/* Logo styling */
.logo-container {
    display: flex;
    align-items: center;
    height: 40px;
}

.logo-container img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 120px;
}

.footer-logo img {
    /* CSS filters to make the logo appear white */
    filter: brightness(0) invert(0.7);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-container {
        height: 32px;
    }
    .logo-container img {
        max-width: 100px;
    }
}

/* Navigation styling */
.nav-link {
    transition: all 0.2s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Footer styling */
.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 0.5rem;
}

.social-icon {
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}
