/* Logo Styles */

.site-branding {
    display: flex;
    align-items: center;
}

.site-logo {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0066cc 0%, #003d7a 50%, #0066cc 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

/* Gradient animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.site-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.site-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.3);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    filter: brightness(1.1) contrast(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .site-logo {
        padding: 6px 12px;
        border-radius: 10px;
    }

    .logo-image {
        height: 40px;
        max-width: 150px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo-image {
        height: 45px;
        max-width: 180px;
    }
}

/* Ensure logo doesn't break layout */
.site-branding {
    flex-shrink: 0;
}

/* Animation on page load */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Alternative subtle gradient background (uncomment to use) */
/*
.site-logo {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.site-logo:hover {
    background: linear-gradient(135deg, #e6f2ff 0%, #d9ebff 100%);
    border-color: rgba(0, 102, 204, 0.2);
}
*/

/* Alternative static professional gradient (uncomment to use) */
/*
.site-logo {
    background: linear-gradient(135deg, #001f3f 0%, #003d7a 100%);
    animation: none;
}
*/