/**
 * eLfilms.cz - Styly pro sdílené hero podstránek seznamky
 *
 * @package    eLfilms
 * @subpackage Frontend
 * @file       css/hero-seznamka.css
 * @version    1.2 - přidán padding-top, upraven margin-bottom
 * @datum      Duben 2026
 * @author     eLfilms Team
 * @copyright  2009-2026 eLfilms.cz
 *
 * STYLUJE:
 * - includes/hero-seznamka.php
 * - Duhové srdce + název eLseznamka na podstránkách
 *
 * POUŽÍVÁ SE NA:
 * - faq.php, kontakt.php, podminky.php, gdpr.php, pridat.php
 * - vazne.php, nezavazne.php a ostatní kategorie
 *
 * NOTE: Stejný vizuál jako .hero-brand na index.php
 */
/* ============================================
   PAGE HERO (logo + název)
   ============================================ */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}
.hero-heart {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}
.hero-heart:hover {
    transform: scale(1.05);
}
.hero-heart-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}
.hero-name {
    font-size: 38px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding-bottom: 10px;
}
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
    .hero {
        padding-top: 25px;
        margin-bottom: 15px;
    }
    .hero-heart,
    .hero-heart-img {
        width: 90px;
        height: 90px;
    }
    .hero-name {
        font-size: 28px;
    }
}
@media (max-width: 479px) {
    .hero-heart,
    .hero-heart-img {
        width: 75px;
        height: 75px;
    }
    .hero-name {
        font-size: 24px;
    }
}