/* Reset y box-sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Tipografía */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
}

/* Hero */
.hero {
  position: relative;
  height: 60vh;
  background: url('imagen-de-fondo.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero .overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  max-width: 90%;
}
.hero h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.hero p  { font-size: 1.1rem; margin-bottom: 1.5rem; }
.hero .btn-primary {
  padding: 0.75rem 1.5rem;
  background: #e60000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
}
.hero .btn-primary:hover { background: #c50000; }

/* Festividades */
.festividades {
  background: #f4f4f4;
  padding: 3rem 1rem;
  text-align: center;
}
.festividades h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}

/* Contenedor de cards */
.festividad-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Cada tarjeta */
.festividad-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%; /* Ocupa todo el ancho en mobile */
  max-width: 900px; /* Se verá amplio en desktop, pero no gigante */
  padding: 20px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.festividad-item img {
  width: 70%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}
.festividad-item h3 {
  font-size: 1.2rem;
  margin: 1rem;
  color: #222;
}
.festividad-item p {
  flex-grow: 1;
  font-size: 0.95rem;
  color: #555;
  padding: 0 1rem 1rem;
}

/* Botón load more */
.load-more-wrapper {
  margin-top: 2rem;
}
#loadMoreBtn {
  padding: 0.75rem 1.5rem;
  background: #e60000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
}
#loadMoreBtn:hover {
  background: #c50000;
}

/* Contacto */
.contacto {
  background: #e60000;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}
.contacto h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.contacto form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contacto input,
.contacto textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}
.contacto button {
  padding: 0.75rem;
  font-size: 1rem;
  background: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
}
.contacto button:hover {
  background: #555;
}
