/* ---------- BASE ---------- */
section {
  min-height: 50vh;
  padding-top: 13rem; 
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: flex-start;
}

body {
  background: #f5f5dc url("img/sfondo.png") no-repeat center top;
  background-size: cover; 
  margin: 0;
  padding: 0;
  min-height: 100vh; 
} 
.container {
  border-radius: 0;
  margin: 0 auto;
  max-width: 600px;
  padding: 2rem; 
  max-width: 600px;
}

/* ---------- TITOLI ---------- */
h1 {
  font-family : 'Brittany Signature' , sans-serif ; 
  font-size: 40px !important;
  text-align: center;
  margin-bottom: 1rem;
}

h2, h3 {
  font-family : 'Brittany Signature' , sans-serif ;                                                                                        
  font-size: 30px !important;
  text-align: center;
  margin-bottom: 1rem;
}

p {
  color: black;
  font-size: 1.1rem;
  text-align: center;
}

/* ---------- COLORI UTILI ---------- */
.color_pr { color: #b26e63; }
.color_bl { color: black; }
.color_w  { color: white; }

/* ---------- INFO E DETTAGLI ---------- */
.info-box {
  flex: 1;
  text-align: center;
}

.container-info {
  margin: 0.5rem 0;
}

.event-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: black;
  font-size: 1rem;
}

.event-info i,
.info i {
  margin-right: 8px;
}

.btn {
  background-color: transparent !important; 
  color: black !important; 
  border: 1px solid black !important; 
  border-radius: 12px; 
  padding: 0.8rem 1.2rem; 
  font-weight: bold;
}

.btn-personalizzato {
  background-color: transparent !important; 
  color: #b26e63 !important; 
  border: 1px solid #b26e63 !important; 
  border-radius: 12px; 
  padding: 0.8rem 1.2rem; 
  font-weight: bold;
}

.btn-personalizzato:hover {
  background-color: #9c5b50;
  transform: translateY(-2px);
  cursor: pointer;
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  h1 { font-size: 2.3rem; }
  h2, h3 { font-size: 1.8rem; }

  .row-cols-md-2 > * {
    margin-bottom: 20px;
  }
}

@media (min-width: 769px) {
  .event-info {
    flex-direction: row;
    justify-content: center;
  }
}
