/* Importazione Font */
@import url('https://fonts.googleapis.com/css2?family=Almendra&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400&display=swap');

html { color-scheme: light; } 

body { 
    background-color: #e4dcb7;
    color: #1a1a1a;
    font-size: 13pt;
    margin: 0;
    padding: 10px;
    line-height: 1.4;
    font-family: 'Lora', serif;
} 

.main-container {
    max-width: 1200px;
	min-width: 900px;
    margin: 0 auto;
}

.img-wrapper {
    text-align: center;
    margin-bottom: 15px;
}

.img-wrapper img {
    height: auto;
	min-width: 200px;
    width: auto;           
    max-width: 100%;       
    object-fit: contain;   
    background: white; 
    border-radius: 8px; 
    border: 2px solid #ccc;
    display: block;
    margin: 0 auto;        /* Centra l'immagine nel contenitore */
}

/* Tipografia e Blocchi */
.tithead {
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 0.5em 0;
    text-transform: uppercase;
}

.descp { 
    font-size: 1.3rem; 
    font-family: "Almendra", serif;
    font-style: italic;
    font-weight: bold;
}

.basep {
    background: white;
    padding: 12px;
    border-radius: 5px;
    margin: 8px 0;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.basepg {
    background: #f9f7ef;
    padding: 12px;
    border-radius: 5px;
    margin: 8px 0;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.titsez {
    color: red;
    font-weight: bold;
}

.rigas {
	font-size: 26px;
	display: inline-block;
}

  .didaimg{
    margin-bottom: 0.3em;
    font-size: 0.8rem;
    font-style: italic;
	text-align: center;
  }

/* Badge dei dadi */
.tirid { 
    background: #cfc17f;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid #b5a662;
    font-size: 0.85em;
    color: #222;
    white-space: nowrap;
    font-weight: bold;
    margin-left: 4px;
}

/* Pulsante Dungeon */
.dungeon-btn {
    background: linear-gradient(135deg, #f4e4bc 0%, #d2b48c 100%);
    color: #4e342e;
    font-family: "Almendra", serif;
    font-size: 11pt;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 16px;
    border: 3px solid #5d4037;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 5px 0;
}

.dungeon-btn:active {
    transform: translateY(2px);
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #f4ecd8; /* Stesso colore pergamena delle stanze */
  padding: 20px;
  border: 3px solid #5d4037;
  border-radius: 8px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}

/* Mobile Optimization */
@media screen and (max-width: 600px) {
    body { font-size: 12pt; }
    .dungeon-btn { 
        width: 100%;
        display: block;
    }

	.main-container {
		margin: 0 10px;
		min-width:auto;
		padding-top: 40px !important;
	}	
}
