/* ========================================
   STATION HEADER - Univerzální fialová hlavička
   pro stránky detailu stanice
   MOBILE FIRST

   Používá se na: detail-stanice, chovni-psi,
   odchovy, recenze, galerie, novinky, kontakt
   ======================================== */

/* ========================================
   ZÁKLADNÍ STYLY - MOBIL
   ======================================== */

.station-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 16px;
    margin: 0 -12px 20px -12px;
    border-radius: 8px 8px 0 0;
}

/* Hlavní nadpis */
.station-header__title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

/* Název stanice pod nadpisem */
.station-header__station {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px 0;
    font-weight: 500;
}

/* Odkaz na hodnocení */
.station-header__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.station-header__rating:hover {
    opacity: 0.85;
}

/* Kontejner pro hvězdičky */
.station-header__stars {
    display: flex;
    gap: 2px;
}

/* Jednotlivá hvězdička */
.station-header__star {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
}

/* Počet recenzí */
.station-header__reviews {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* ========================================
   MODIFIKÁTORY PRO RŮZNÉ STRÁNKY
   (pokud by bylo potřeba specifické chování)
   ======================================== */

/* Detail stanice - O nás */
.station-header--about {
    /* Případné specifické styly */
}

/* Chovní psi */
.station-header--dogs {
    /* Případné specifické styly */
}

/* Odchovy */
.station-header--litters {
    /* Případné specifické styly */
}

/* Recenze */
.station-header--reviews {
    /* Případné specifické styly */
}

/* Galerie */
.station-header--gallery {
    /* Případné specifické styly */
}

/* Detail psa/feny */
.station-header--dog {
    /* Styly řešeny v detail-pes.css */
}

/* ========================================
   RESPONZIVITA - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .station-header {
        padding: 28px 32px;
        margin: -24px -24px 28px -24px;
    }

    .station-header__title {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .station-header__station {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .station-header__star {
        width: 18px;
        height: 18px;
    }

    .station-header__reviews {
        font-size: 14px;
    }
}

/* ========================================
   RESPONZIVITA - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .station-header {
        padding: 32px 40px;
        margin: -24px -24px 32px -24px;
        border-radius: 12px 12px 0 0;
    }

    .station-header__title {
        font-size: 28px;
    }

    .station-header__station {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .station-header__star {
        width: 20px;
        height: 20px;
    }

    .station-header__reviews {
        font-size: 15px;
    }
}
