/* Temporary Banner Styles */
.temp-banner {
    background-color: var(--secondary);
    color: white;
    text-align: center;
    padding: 12px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}

.temp-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.banner-close {
    position: absolute;
    right: 20px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s;
}

.banner-close:hover {
    transform: scale(1.2);
}

/* Adjust header position when banner is visible */
body.has-banner header {
    margin-top: 45px;
}

/* Adjust hero section position when banner is visible */
body.has-banner .hero {
    margin-top: 135px;
}

/* Hide banner when closed */
.temp-banner.hidden {
    display: none;
}
