/* --- SHARED HERO STRUCTURE (Global) --- */

.breadcrumb-container{
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 15px;
}

.breadcrumb {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 15px;
}

.breadcrumb:hover {
    color: var(--accent-orange);
}

#breadcrumb-last:hover {
    color: var(--text-light);
}

.header {
    margin-bottom: 20px;
}

.page-title {
    color: black;
    font-size: 2rem;
    font-weight: bold;
}

.page-subtitle {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

#home {
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 20px;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
    min-height: 40vh; /* Consistent height for sub-headers */
}

.hero-subpage{
    padding-top: 109px; /* Space for fixed navbar (100-89=)*/ 
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
    min-height: 40vh; /* Consistent height for sub-headers */
}

.hero-subpage .container {
    color: var(--primary-blue);
}

.hero-subpage h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-family: 'Prompt', sans-serif;
}

/* Common Text Utilities for Heroes */
.highlight {
    color: var(--accent-orange);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}