/* style.css */
body {
  background-color: #f8f9fa; /* Color de fondo claro (armonía con nav oscuro) */
  color: #333;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#imglogo {
  width: 75px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

#imgyo {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #000000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease;
  
}

#imgyo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
  border: 5px solid #f30909;
  cursor: pointer;
  scale: 1.1;
}


main {
  flex-grow: 1; /* Para empujar el footer hacia abajo si hay poco contenido */
}

/* Espaciado general de secciones */
section {
  padding: 60px 0;
}

/* Estilo para los párrafos, mejorando la lectura */
p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #4f4f4f;
}

.mi-historia {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #4f4f4f;
  text-align: center;
}

.mi-historia:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
  cursor: pointer;
  scale: 1.1;
}

/* Personalización de encabezados */
h1,
h2,
h3 {
  font-weight: 700;
  color: #212529; /* Color oscuro */
}

h1 {
  font-size: 2.5rem;
}

/* Transición para la galería de imágenes (Micro-animación) */
.gallery-img {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  object-fit: cover;
}

.gallery-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Estilo para los videos */
iframe {
  border: none;
}

iframe:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
  cursor: pointer;
  scale: 1.1;
}

/* Estilo para las citas inspiradoras */
blockquote {
  font-size: 1.25rem;
  font-style: italic;
  border-left: 5px solid #0d6efd; /* Azul de Bootstrap */
  padding: 15px 20px;
  margin: 40px auto;
  background-color: #fff;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  max-width: 800px;
}

/* Transiciones en enlaces */
a,
button {
  transition: all 0.3s ease;
}

footer a:hover {
  color: #0d6efd !important;
  text-decoration: underline !important;
}
