/* Logo styling for Artemis Website */

/* Header Logo */
.logo-img {
    height: 60px;
    width: auto;
    margin-left: 10px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    animation: logoGlow 3s infinite alternate;
}

header.scrolled .logo-img {
    height: 50px;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    }
    100% {
        filter: drop-shadow(0 2px 8px rgba(212, 168, 79, 0.6));
    }
}

/* Hero Logo */
.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
    animation: heroLogoFloat 6s ease-in-out infinite;
    transition: all 0.5s ease;
}

.hero-logo-img:hover {
    filter: drop-shadow(0 8px 20px rgba(212, 168, 79, 0.6));
    transform: scale(1.05) translateY(-5px);
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Create a glow effect for the pulse animation */
.pulse-animation {
    animation: logoPulse 3s ease-in-out infinite alternate;
}

@keyframes logoPulse {
    0% {
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
    }
    100% {
        filter: drop-shadow(0 8px 25px rgba(212, 168, 79, 0.7));
    }
}

/* Footer Logo */
.footer-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 3px 8px rgba(212, 168, 79, 0.5));
}

/* Logo Watermark */
.logo-watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.logo-watermark img {
    width: 200px;
    height: auto;
}
