/**
 * Block Style: Hero Header
 * DESIGN: Poster/Card Style
 * STATUS: FIXED (Gradient Overlay Removed - "Solid Picture")
 */

/* 1. THE WRAPPER */
.c-hero-wrapper {
    display: block;
    width: 100%;
    background-color: var(--color-tiber); 
    padding-top: 0; 
    padding-bottom: 4rem; 
    
    /* THE FIX: Remove position: relative and z-index from here 
       so it doesn't trap the image layer! */
}

/* 2. THE CARD (The Image) */
.c-block-hero {
    position: relative;
    /* THE FIX: Force the image to the very front layer */
    z-index: 30; 
    
    width: 100%; 
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem; 
    background-color: var(--color-tiber);
    color: white;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 0; 
    
    /* THE FIX: Add a shadow so it looks like it's floating over the beige */
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* 3. THE OVERLAY (DISABLED) */
.c-block-hero__overlay {
    display: none; /* <--- No Gradient, just the raw image */
}

/* 4. CONTENT & TYPOGRAPHY */
.c-block-hero__content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.c-block-hero__title {
    font-family: var(--font-headline);
    font-size: clamp(3.5rem, 6vw, 6rem); 
    line-height: 0.85;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 2rem;
    
    /* ADDED: Text Shadow because the gradient is gone.
       This ensures text is readable if the image is bright. */
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* 5. BUTTON */
.c-block-hero .c-btn {
    display: inline-block;
    background-color: var(--color-tahiti-gold);
    color: white;
    border: none;
    border-radius: 0;
    padding: 1.2rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.c-block-hero .c-btn:hover {
    background-color: #ff8c3a;
}

/* MOBILE */
@media (max-width: 768px) {
    .c-hero-wrapper {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .c-block-hero {
        padding: 2rem 1.5rem; 
        min-height: 500px;
    }
}