/* Banner styles for site relocation notice */
.relocation-banner {
    background: linear-gradient(135deg, #f2b600 0%, #e17300 100%);
    color: #fff;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1000;
    border-bottom: 3px solid #c89500;
}

.relocation-banner-content {
    max-width: 900px;
    margin: 0 auto;
}

.relocation-banner h2 {
    margin: 0 0 15px 0;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.relocation-banner p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.6em;
    color: #fff;
}

.relocation-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #e17300;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.relocation-btn:hover {
    background-color: #242424;
    color: #f2b600;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .relocation-banner h2 {
        font-size: 22px;
    }

    .relocation-banner p {
        font-size: 14px;
    }

    .relocation-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}
