/* Common header styles for all pages */
.site-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #2e3035;
    padding-bottom: 15px;
}

.logo-container {
    position: relative; 
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.logo {
    display: block;
    height: 100px;
    width: auto;
}

/* Shine effect for the logo */
.logo-container::before {
    content: '';
    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.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine-effect 3s infinite;
    animation-delay: 2s;
}

@keyframes shine-effect {
    100% {
        left: 150%;
    }
}

.site-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.8em;
}