/* ===== RESET TOTAL ===== */
html, body {
    background: #fff !important;
    margin: 0;
    padding: 0;
}

/* coupe ASTRA */
.site,
.site-content,
.ast-container,
.entry-content {
    background: #fff !important;
    background-image: none !important;
}

/* ===== HOME ===== */
.hb-home {
    background: #fff !important;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* container */
.hb-container {
    max-width: 900px;
    padding: 80px 40px;
    text-align: center;
}

/* TITRE + IMAGE */
.hb-title {
    font-size: 56px;
    font-weight: 500;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* IMAGE PETITE À DROITE */
.hb-portrait {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid #ddd;
}

/* SOUS TITRE */
.hb-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: #444;
    margin-bottom: 20px;
}

/* TEXTE */
.hb-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
    margin-top: 20px;
}

/* BOUTONS */
.hb-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hb-btn {
    padding: 10px 18px;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
}

.hb-btn:hover {
    background: #111;
    color: #fff;
}

.hb-secondary {
    border-color: #777;
}

/* BOUTONS BASE */
.hb-btn,
.hb-btn:visited {
    color: #111 !important;
    border: 1px solid #111 !important;
    background: transparent !important;
}

/* HOVER */
.hb-btn:hover {
    background: #111 !important;
    color: #fff !important;
}

/* BOUTON SECONDARY */
.hb-secondary {
    border-color: #555 !important;
    color: #111 !important;
}

/* HOVER SECONDARY */
.hb-secondary:hover {
    background: #555 !important;
    color: #fff !important;
}