/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #eee;
  background-color: #111;
  line-height: 1.6;
}

a {
  color: #e74c3c;
  text-decoration: none;
}

a:hover {
  color: #ff4f4f;
}

/* Hero / cabezal con imagen de fondo */
.hero {
  position: relative;
  height: 60vh;
  background: url('../images/banner.jpg') center center / cover no-repeat;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.5rem;
}

/* Secciones */
main {
  padding: 2rem;
}

section {
  margin-bottom: 2rem;
}

section h2 {
  margin-bottom: 1rem;
  color: #e74c3c;
}

/* Galería */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border: 2px solid #333;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Detalles y precios */
.detalles ul {
  list-style: none;
  padding-left: 0;
}

.detalles ul li {
  margin-bottom: 0.5rem;
}

/* Botón de compra */
.btn-buy {
  display: inline-block;
  background-color: #e74c3c;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 1.1rem;
  transition: background-color 0.3s;
}

.btn-buy:hover {
  background-color: #ff4f4f;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #0a0a0a;
  color: #777;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* separación entre logo, “en Guadalajara” y la fecha */
}

.date-text {
  font-size: 1rem;
  color: #fff;
}

.logo-img {
  height: 500px;  /* ajusta este valor a la altura deseada */
  width: auto;
}

.logo-text {
  /* estilos de texto que quieras */
  font-size: 1.5rem;
  color: #fff;
}

