/* Import Google Fonts at the very top of your CSS file */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&family=Montserrat:wght@400;700&display=swap');

.page-header {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--mibooz-black);
    background-blend-mode: luminosity;
    z-index: -1;
}

.page-header-bg::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); /* dark overlay */
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 440px;
}

.page-header__inner {
    text-align: center;
    width: 100%;
}

.thm-breadcrumb {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thm-breadcrumb li {
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline;
}

.thm-breadcrumb li a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.thm-breadcrumb li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.page-header__title {
    color: #fff;
    font-size: 3rem;
    font-family: 'Century Gothic', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
}

@media (max-width: 767px) {
    .page-header, .page-header .container {
        min-height: 180px;
        height: 180px;
    }
    .page-header__title {
        font-size: 2rem;
    }
}

/* Section spacing and background */
.welcome-three {
    background: #fff;
    padding: 60px 0;
    margin-bottom: 40px;
}
.welcome-three.section-alt {
    background: #eaf6fb;
}

/* Container and row (Bootstrap or similar grid assumed) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

/* Columns */
.col-xl-7, .col-xl-5 {
    box-sizing: border-box;
}
.col-xl-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
    padding-right: 30px;
}
.col-xl-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
    padding-left: 30px;
}

/* Section title */
.section-title__tagline {
    color: #0056a3;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
    font-family: 'Montserrat', Arial, sans-serif;
}
.section-title__title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #222;
    line-height: 1.1;
}

/* Text */
.welcome-three__text {
    font-size: 1.2rem;
    color: #222;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', Arial, sans-serif;
}

/* Image box */
.welcome-three__img-box {
    border: 3px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    max-width: 100%;
}
.welcome-three-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .col-xl-7, .col-xl-5 {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    .row {
        flex-direction: column;
    }
    .welcome-three__img-box {
        margin-top: 2rem;
    }
    .section-title__title {
        font-size: 2rem;
    }
    .welcome-three__text {
        font-size: 1rem;
    }
}
