header {
    background: linear-gradient(135deg, #4f4f63 0%, #2e2e38 100%); 
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(51, 48, 30, 0.3); 
    position: relative;
    overflow: hidden;
}

/* Shine Effect */
.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        left: 150%;
        opacity: 0.6;
    }
}

header::before,
header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: float-orb 20s infinite alternate ease-in-out;
    z-index: 0;
    filter: blur(25px);
}

header::before {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(70, 139, 30, 0.3) 0%, transparent 70%);
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

header::after {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(71, 141, 43, 0.25) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

header {
    position: relative;
}
header::after {
    box-shadow: -100px -100px 0 150px rgba(59, 129, 27, 0.2);
}

@keyframes float-orb {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, 30px) scale(1.2);
    }
    66% {
        transform: translate(-30px, -50px) scale(0.8);
    }
    100% {
        transform: translate(0, 0) scale(1.1);
    }
}

#logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #faf4d9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease; 
}

#logo-img:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    filter: brightness(1.1); 
}

.title {
    font-size: 3rem;
    margin: 0.5rem 0;
    position: relative;
    z-index: 2; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
}



.jeje-title {
    color: #faf4d9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header::before {
        width: 200px;
        height: 200px;
    }
    header::after {
        width: 250px;
        height: 250px;
    }
}