/* Header styling */
header {
    background-color: transparent;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    color: #040404;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease; /* Smooth hide effect */
}

/* When the header is hidden (scrolling down) */
.header-hidden {
    top: -100px; /* Adjust as needed, hides the header */
}

.header-content img {
    max-height: 60px;
    width: auto;
    display: block;
}

.header-content {
    display: flex;
    align-items: center;
}

.auth-links {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.auth-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

/* Padding for the body to ensure content is not hidden under the fixed header */
body {
    padding-top: 80px; /* Adjust according to the height of your header */
}
