/* ================================================
   PAGE BIÈRES — /assets/css/bieres.css
   Styles pour la liste des bières (permanentes,
   éphémères, softs)
================================================ */

/* ── Hero bières ── */
.beer-hero {
    padding: calc(80px + 60px) 24px 60px;
    background: #FAF8F3;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.beer-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(217,138,43,.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Titre de section ── */
.beer-section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}
.beer-section-title::before,
.beer-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E0D8CC;
}
.beer-section-title span {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    color: #1A1208;
    white-space: nowrap;
}

/* ── Grille ── */
.beer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

/* ── Card ── */
.beer-card {
    background: #fff;
    border: 1px solid #E0D8CC;
    border-radius: 24px;
    overflow: hidden;
    transition: box-shadow .35s ease, transform .35s ease;
}
.beer-card:hover {
    box-shadow: 0 20px 60px rgba(26,18,8,.1);
    transform: translateY(-6px);
}

/* ── Image container ── */
.beer-card-img {
    background: linear-gradient(135deg, #F5F0E8 0%, #EDE6D6 100%);
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}
.beer-card-img img {
    height: 210px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(80,50,10,.2));
    transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
.beer-card:hover .beer-card-img img {
    transform: scale(1.08) rotate(1deg);
}

/* ── Badges ── */
.beer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 100px;
}
.badge-permanent { background: rgba(46,74,56,.1); color: #2E4A38; }
.badge-ephemeral  { background: rgba(200,75,49,.1); color: #C84B31; }
.badge-soft       { background: rgba(59,130,246,.1); color: #2563EB; }

/* ── Body card ── */
.beer-card-body { padding: 20px 22px 24px; }
.beer-name  { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 900; color: #1A1208; line-height: 1.1; }
.beer-style { font-size: .8rem; color: #D98A2B; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* ── Pills infos ── */
.beer-meta { display: flex; gap: 8px; margin: 10px 0; flex-wrap: wrap; }
.beer-pill {
    background: #F3EFE6;
    color: #6B5E4E;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid #E0D8CC;
}

/* ── Description ── */
.beer-desc { font-size: .85rem; color: #6B5E4E; line-height: 1.65; margin-top: 10px; }

/* ── Notes de dégustation ── */
.beer-tasting {
    background: #FFF8F0;
    border: 1px solid rgba(217,138,43,.2);
    border-radius: 12px;
    padding: 10px 14px;
    margin-top: 12px;
}
.beer-tasting-label { font-size: .62rem; font-weight: 700; color: #D98A2B; text-transform: uppercase; letter-spacing: .1em; }
.beer-tasting-text  { font-size: .78rem; color: #6B5E4E; margin-top: 4px; font-style: italic; }

/* ── Section softs ── */
.soft-section { background: #F0F5FF; }
