/* Full Width Hero Style */
#ticotrekker-hero {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Covers 80% of screen height */
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000; /* Fallback */
}

/* Background Picture spans 100% */
#ticotrekker-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#ticotrekker-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay for Readability - Modern Gradient */
#ticotrekker-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark on left (for text), transparent on right (for image) */
    background: linear-gradient(to right, 
                rgba(0,0,0,0.8) 0%, 
                rgba(0,0,0,0.4) 50%, 
                rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

/* Container for Text Content */
#ticotrekker-hero .hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#ticotrekker-hero .hero-content {
    max-width: 40rem;
    /* Force text to be white for contrast */
    --headerColor: #ffffff;
    --bodyTextColor: #f0f0f0;
}

#ticotrekker-hero .cs-topper {
    color: var(--primary); /* Use your brand yellow */
    margin-bottom: 0.5rem;
}

#ticotrekker-hero .hero-title {
    font-family: var(--headerFont);
    font-size: var(--headerFontSize);
    color: #fff;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

#ticotrekker-hero .hero-text {
    font-family: var(--bodyFont);
    font-size: var(--bodyFontSize);
    color: #f0f0f0;
    margin-bottom: 2.5rem;
}

/* Mobile Adjustments */
@media only screen and (max-width: 768px) {
    #ticotrekker-hero {
        min-height: 60vh;
        text-align: center;
    }
    #ticotrekker-hero .hero-overlay {
        background: rgba(0,0,0,0.6); /* Even darker overlay for small screens */
    }
    #ticotrekker-hero .hero-content {
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}