/* ================================
   Brand Colors
================================== */
:root {
    --primary-green: #2F4F2F;   /* Headings, primary buttons */
    --accent-green: #3E7A3F;    /* Hover on breadcrumb/button */
    --accent-gold: #CEB77E;     /* Icons, subtle borders */
    --neutral-offwhite: #F5F2EA;
    --neutral-darkgrey: #444444;
    --neutral-lightgrey: #f7f7f7;
    --shadow-color: rgba(242, 242, 242, 0.08);
}

/* ================================
   Page Hero
================================== */
.page-hero {
    background-color: var(--neutral-lightgrey);
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--primary-green);
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--accent-gold); /* subtle gold accent border */
    overflow: hidden;
}

/* Decorative subtle dots with gold tint */
.page-hero::before,
.page-hero::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-gold) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.2;
    z-index: 0;
}

.page-hero::before {
    top: 5%;
    left: 5%;
    transform: rotate(45deg);
}

.page-hero::after {
    bottom: 5%;
    right: 5%;
    transform: rotate(-45deg);
}

/* ================================
   Heading
================================== */
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* ================================
   Breadcrumbs
================================== */
.page-hero .breadcrumb {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-family: 'Raleway', sans-serif;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb-item a {
    color: var(--neutral-darkgrey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero .breadcrumb-item a:hover {
    color: var(--accent-green);
}

.page-hero .breadcrumb-item.active {
    color: var(--primary-green);
    font-weight: 600;
}

/* Custom breadcrumb separator */
.page-hero .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--neutral-darkgrey);
    padding: 0 0.5rem;
}

/* ================================
   Animations
================================== */
@keyframes fadeInUpx {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fadeInUpx 0.8s ease-out forwards;
    opacity: 0;
}
.animate-fade-in-up.delay-200 { animation-delay: 0.2s; }

/* ================================
   Responsive
================================== */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
        font-weight: 600;
    }
}
@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.5rem;
        font-weight: 500;
    }
}
