/**
 * Full-width Banner Styles
 *
 * @package bluepencilcoll
 */

/* Full-width Banner Section */
.full-width-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* .full-width-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--wp--preset--color--slate-rgb), 0.3);
    z-index: 1;
} */

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.banner-title {
    font-family: var(--wp--preset--font-family--montserrat);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--wp--preset--color--putty);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}
.full-width-banner .wp-block-cover__inner-container,
.full-width-banner .wp-block-cover__inner-container h1 {
    max-width: 100%;
    width: 100%;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
}

@media screen and (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
}
