/**
 * eLfilms - Hero Simple
 * Soubor: css/hero-simple.css
 * Univerzální hero sekce pro: Slavné ženy, Výroky, Narozeniny, O nás, Kontakt
 */

/* ============================================
   ZÁKLADNÍ DESKTOP STYLY
   ============================================ */

.hero-section-simple {
    height: 400px;
    padding: 140px 20px 60px;
    box-sizing: border-box;
    background: linear-gradient(
        180deg,
        rgba(11, 51, 79, 0.15) 0%,
        rgba(10, 45, 69, 0.25) 100%
    ),
    url('../images/pozadi2.jpg') center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.hero-left-simple {
    flex-shrink: 0;
}

.hero-right-simple {
    text-align: center;
}

.hero-rainbow-logo {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-subtitle-small {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #EEB500;
    margin-bottom: 15px;
}

.hero-title-large {
    font-size: 54px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-line {
    width: 60px;
    height: 3px;
    background: #EEB500;
    margin: 0 auto 20px auto;
}

.hero-text-medium {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.hero-note-small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 20px;
    line-height: 1.6;
}

/* ============================================
   RESPONZIVNÍ STYLY
   ============================================ */

/* VŠECHNY MOBILY (do 767px) */
@media screen and (max-width: 767px) {
    body .hero-section-simple {
        height: auto !important;
        min-height: 300px !important;
        padding: 100px 20px 40px !important;
        background-size: cover !important;
        background-position: center !important;
    }
    
    body .hero-section-simple .hero-content-simple {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        text-align: center !important;
    }
    
    body .hero-section-simple .hero-left-simple {
        order: 1 !important;
    }
    
    body .hero-section-simple .hero-right-simple {
        order: 2 !important;
        text-align: center !important;
    }
    
    body .hero-section-simple .hero-rainbow-logo {
        width: 80px !important;
    }
    
    body .hero-section-simple .hero-subtitle-small {
        font-size: 14px !important;
        letter-spacing: 3px !important;
    }
    
    body .hero-section-simple .hero-title-large {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }
    
    body .hero-section-simple .hero-line {
        width: 50px !important;
        height: 2px !important;
    }
    
    body .hero-section-simple .hero-text-medium {
        font-size: 18px !important;
    }
    
    body .hero-section-simple .hero-note-small {
        font-size: 12px !important;
        max-width: 90% !important;
    }
}

/* TABLET PORTRAIT (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    body .hero-section-simple {
        height: 420px !important;
        padding: 110px 20px 50px !important;
    }
    
    body .hero-section-simple .hero-content-simple {
        gap: 25px !important;
    }
    
    body .hero-section-simple .hero-rainbow-logo {
        width: 90px !important;
    }
    
    body .hero-section-simple .hero-subtitle-small {
        font-size: 16px !important;
        letter-spacing: 4px !important;
    }
    
    body .hero-section-simple .hero-title-large {
        font-size: 40px !important;
        letter-spacing: 1px !important;
    }
    
    body .hero-section-simple .hero-text-medium {
        font-size: 19px !important;
    }
    
    body .hero-section-simple .hero-note-small {
        font-size: 12px !important;
        max-width: 95% !important;
        margin-top: 15px !important;
    }
}

/* TABLET LANDSCAPE (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    body .hero-section-simple {
        height: 380px;
        padding: 130px 20px 55px;
    }
    
    body .hero-section-simple .hero-rainbow-logo {
        width: 160px;
    }
    
    body .hero-section-simple .hero-subtitle-small {
        font-size: 24px;
        letter-spacing: 7px;
    }
    
    body .hero-section-simple .hero-title-large {
        font-size: 48px;
    }
    
    body .hero-section-simple .hero-text-medium {
        font-size: 28px;
    }
}