/* --- Style Général --- */
body {
    background-color: #0c0a1a;
    background-image: url('https://avantis.world/perso/IMG/boutique.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #e0e0e0;
    font-family: sans-serif;
    margin: 0;
}

#overlay {
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 5vh 2vw;
    box-sizing: border-box;
}

#generator-container {
    width: 90%;
    max-width: 1000px;
    text-align: center;
}

header h1 {
    color: #aaffee;
    font-family: serif;
    font-weight: normal;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.narrator {
    font-style: italic;
    font-size: 1.2em;
    color: #ccc;
}

/* --- Contrôles de Génération --- */
#controls-section {
    background-color: rgba(10, 10, 20, 0.8);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #4a90e2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-top: 30px;
}

.control-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    min-width: 160px;
}

.control-group label {
    font-size: 0.9em;
    margin-bottom: 5px;
    color: #8ec3ff;
}

.control-group select {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    background-color: rgba(0,0,0,0.5);
    color: #e0e0e0;
    border: 1px solid #555;
    border-radius: 5px;
}

#generate-btn {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#generate-btn:hover {
    background-color: #63a0e4;
}

/* --- Fiche de la Taverne --- */
.hidden {
    display: none !important;
}

#sheet-section {
    margin-top: 40px;
}

#tavern-sheet {
    background-color: #f4f0e8;
    color: #333;
    border: 2px solid #5a4a3a;
    border-radius: 5px;
    padding: 25px;
    text-align: left;
    font-family: serif;
}

#tavern-name {
    text-align: center;
    font-size: 2.2em;
    color: #5a4a3a;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #c9bfae;
    padding-bottom: 15px;
}

.sheet-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 25px;
}

.column-left img {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #c9bfae;
    margin-bottom: 15px;
}

.description-block {
    margin-bottom: 20px;
}

.description-block h3 {
    color: #5a4a3a;
    border-bottom: 1px solid #c9bfae;
    padding-bottom: 5px;
    margin: 0 0 10px 0;
    font-size: 1.2em;
    text-transform: uppercase;
}

.description-block p {
    line-height: 1.6;
    margin: 0;
}

.description-block ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.description-block ul li {
    background-color: rgba(0,0,0,0.05);
    padding: 8px 12px;
    border-radius: 3px;
    margin-bottom: 5px;
}

.description-block ul li strong {
    color: #5a4a3a;
}