.hero-section {
    /* Cesta vede z css/ zpět k rootu a pak do assets/images/ */
    /* Změněno z 0.8 na 0.5 pro světlejší overlay */
    background: linear-gradient(rgba(33, 37, 41, 0.5), rgba(33, 37, 41, 0.5)), url('../assets/images/elektrikar-ceske-budejovice-hero-bg.webp') center/cover no-repeat;
    color: var(--text-light);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 2px;
    /* Přidán stín pro lepší čitelnost textu na světlejším pozadí */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content h2 {
    color: var(--text-light);
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content h2 { font-size: 1.5rem; }
}

.hero-logo {
    max-width: 150px; /* Adjust this number based on how big you want the logo */
    height: auto;
    margin-bottom: 20px;
    /* Optional: If the logo is dark and gets lost on the background, 
       you can add a subtle drop shadow or background glow here */
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.5)); 
}