/* Header Section styles  */
.hero-section {
    position: relative;
    background-image: url('/content/images/fieldtree-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--text-color-light);
    text-align: center;
    padding: 140px 20px 160px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
 
.hero-section::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background-color: rgba(59, 82, 73, 0.65); /* secondary-color with opacity */
    z-index: 1;
}

.hero-section .container { 
    position: relative; 
    z-index: 2; 
    max-width: 900px;
}

.hero-section h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.125rem, 4.59vw, 3.23rem);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-section p.subhead {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

/* Unique hero CTA button styling - consistent with global styles but smaller and enhanced */
.hero-cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color-cta-button, #D4A373);
    color: var(--text-color-light, #ffffff);
    text-decoration: none;
    border-radius: var(--border-radius, 8px);
    font-family: var(--font-primary, 'Lato', sans-serif);
    font-size: clamp(0.85rem, 2.125vw, 1.02rem); 
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-standard, all 0.3s ease);
    border: 2px solid var(--primary-color-cta-button, #D4A373);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.hero-cta-button:hover {
    background-color: var(--accent-color-dark, #b88a5f);
    border-color: var(--accent-color-dark, #b88a5f);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta-button:focus-visible {
    outline: 3px solid var(--focus-outline-color, #D4A373);
    outline-offset: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(212, 163, 115, 0.3);
}

/* Responsive adjustments for header */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 120px;
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p.subhead {
        font-size: 1.1rem;
    }
}