/* Patron Page Styles */

.patron-hero {
    position: relative;
    background-image: url('../img/about_hero.png'); /* Consistency with other hero backgrounds */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 10px auto;
    max-width: calc(100% - 20px);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px; /* Clearance for absolute navbar */
    text-align: center;
    color: #444;
    overflow: hidden;
}

.patron-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-custom {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    margin-bottom: 30px;
}

.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;
}

.patron-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 600;
    color: #1965c0;
    margin: 20px 0;
}

/* Sections */
.patron-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    line-height: 1.2;
    color: #444;
    margin-bottom: 25px;
}

.section-title span {
    color: #1965c0;
}

.patron-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.patron-img-wrapper {
    position: relative;
    padding: 10px;
}

.patron-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Highlight Box */
.highlight-box {
    background-color: #eaf2fb;
    padding: 40px;
    border-radius: 24px;
    border-left: 5px solid #1965c0;
    margin: 30px 0;
}

.highlight-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    color: #1965c0;
    line-height: 1.5;
}

/* Legacy Section */
.legacy-section {
    background-color: #f9fbfd;
    padding: 80px 0;
}

/* Animations (Reuse from founder_animation logic) */
.hero-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.show {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}
