/* Frontend styles for Hero Banner Pro */
.rhbp-banner-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #222;
    color: #fff;
    /* transition for smooth resizing */
    transition: min-height 0.3s ease; 
}

.rhbp-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain; /* Prevent cropping as default */
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.6;
}

.rhbp-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.rhbp-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: #fff;
}

.rhbp-description {
    font-size: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
}

.rhbp-button {
    display: inline-block;
    padding: 15px 30px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.rhbp-button:hover {
    background: #005177;
}
