/* Styl dla sekcji hero na podstronach - bez animacji */
.hero-subpage {
    min-height: 50vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 5% 4rem;
    background: #000;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
}

.hero-subpage .hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
}

.hero-subpage h1 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: white;
}

.hero-subpage p {
    font-size: 1.2rem;
    color: #999;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-subpage-accent {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, 
        #ff4500 0%,
        #ff6b35 20%,
        #ff8c42 40%,
        #ffa726 60%,
        #ff7043 80%,
        #e64a19 100%);
}
