/*
Theme Name: Schule Child
Template: schule
Version: 1.0
*/


/* Full-width Banner */
.custom-banner {
    width: 100vw; /* full viewport width */
    height: 520px; /* banner height */
    background: #0a1a2a; /* dark navy background */
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 40px; /* top, right, bottom, left */
    box-sizing: border-box;
    color: #fff;
    margin-left: calc(-1 * (100vw - 100%)/2); /* compensate container padding */
    margin-right: calc(-1 * (100vw - 100%)/2);
	background-size: cover;
	background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Banner content */
.custom-banner-content {
    max-width: 100%;
    text-align: left;
	padding: 0 30px !important;
}

/* Banner title */
.banner-title {
    font-size: 30px;
    font-weight: 600;
    /* margin-top: 75px; */
    margin-bottom: 10px;
    color: #fff;
    line-height: 35px;
	letter-spacing:normal;
}

/* Banner subtitle */
.banner-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
    color: #ddd;
	padding:0;
	
}

/* Buttons container */
.banner-buttons {
    display: flex;
    gap: 15px;
}

/* Banner buttons */
.btn-banner {
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 4px;
    text-decoration: none;
    background: #8c6634; /* sober blue */
    color: #fff;
    transition: background 0.3s ease;
}

.btn-banner:hover {
    background: #002147;
}
