/* ---------------------------
   FONTY & ZÁKLADNÍ NASTAVENÍ
----------------------------*/
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #faf7f2; /* krémová */
    color: #4a3e32; /* tmavě hnědá */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin: 0;
}

img {
    max-width: 100%;
    border-radius: 12px;
}

main {
    padding-bottom: 80px; /* prostor pro dolní navigaci */
}

/* ---------------------------
       HLAVIČKA
----------------------------*/
.header {
    text-align: center;
    padding: 24px 16px;
    background: #b85c38; /* teplá terakota */
    color: white;
}

.header .subtitle {
    margin-top: 6px;
    font-size: 15px;
    opacity: 0.9;
}

/* ---------------------------
       STATISTIKY
----------------------------*/
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid #e8e3db;
}

.stat-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.stat-card .value {
    font-size: 26px;
    font-weight: 600;
    color: #b85c38;
}

/* ---------------------------
       SLEPIČKY
----------------------------*/
.hens {
    padding: 16px;
}

.hens h2 {
    margin-bottom: 16px;
    color: #6b5a48;
}

.hen-list {
    display: grid;
    gap: 16px;
}

.hen-card {
    background: white;
    border-radius: 16px;
    padding: 12px;
    border: 1px solid #e8e3db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    text-align: center;
}

.hen-card h3 {
    margin-top: 10px;
    margin-bottom: 4px;
    color: #b85c38;
}

.hen-card p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* ---------------------------
       TÝDENNÍ SNŮŠKA
----------------------------*/
.week-eggs {
    padding: 16px;
}

.week-eggs h2 {
    margin-bottom: 10px;
}

/* canvas graf má vlastní nastavení v JS */

/* ---------------------------
       DOLNÍ NAVIGACE
----------------------------*/
.nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    display: flex;
    border-top: 1px solid #d8d3cb;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
}

.nav-item {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #6b5a48;
    padding-top: 10px;
    font-size: 14px;
}

.nav-item.active {
    color: #b85c38;
    font-weight: 600;
}

/* ---------------------------
       RESPONSIVE
----------------------------*/
@media (min-width: 700px) {
    .stats {
        max-width: 600px;
        margin: 0 auto;
    }

    .hen-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }

    .week-eggs {
        max-width: 600px;
        margin: 0 auto;
    }
}


#eggChart {
  width: 100%;
  height: 220px;
}