/* Piccole personalizzazioni per il template */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

header {
  background-color: #f8f9fa;
}

img[alt="placeholder"] {
  background: #e9ecef;
  width: 100%;
  height: auto;
  min-height: 180px;
  object-fit: cover;
}

footer small {
  opacity: 0.85;
}

/* Bottoni quadrati centrati */
.square-btn {
  background: #472238 !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
}

.square-btn:focus,
.square-btn:active {
  box-shadow: 0 0 0 0.2rem rgba(71,34,56,0.25);
}

.buttons-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

/* Colorazione per testo strong e titolo modale */
.modal-body strong,
.modal .modal-title,
.modal-body b {
  color: #472238;
}

.modal .modal-title {
  text-transform: uppercase;
  font-weight: 700;
}

/* Mobile: full width buttons with slight horizontal padding */
@media (max-width: 576px) {
  .buttons-container {
    max-width: 100% !important;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .buttons-stack {
    align-items: stretch;
  }
  .square-btn {
    width: 100% !important;
    height: 56px !important;
    border-radius: 0 !important;
  }
}

