/* Standardized Hero Section for Inner Pages */

.page-hero {
    position: relative;
    background-image: url('../img/about_hero.png'); /* Default background */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 5px auto 0; 
    max-width: calc(100% - 24px);
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px; 
    padding-bottom: 20px;
    text-align: center;
    color: #444;
    overflow: hidden;
}
.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0; /* For animation */
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.page-hero-content.show {
    opacity: 1;
    transform: translateY(0);
}

.breadcrumb-custom {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}

.breadcrumb-custom a {
    color: #444;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb-custom .active {
    color: #1965c0;
    font-weight: 600;
}

.breadcrumb-custom .separator {
    color: #444;
    opacity: 0.5;
}

.page-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1965c0;
    margin: 15px 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.page-hero-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    max-width: 700px;
    color: #555;
    margin-top: 10px;
}
