@charset "UTF-8";
/* Tipografía base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  background-color: #F8F1E7;
  color: #2E2E2E;
  line-height: 1.6; }

/* Títulos */
h1, h2, h3 {
  font-family: 'Merriweather', serif;
  color: #6B1E2E; }

/* Enlaces */
a {
  color: #6B1E2E;
  text-decoration: none; }

a:hover {
  text-decoration: underline; }

/* Encabezado personalizado con imagen */
.custom-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2em;
  gap: 1.5em;
  background-color: #F8F1E7; }
  .custom-header .logo-image {
    width: 100px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }
  .custom-header h1 {
    margin: 0;
    font-size: 2.2em;
    color: #6B1E2E; }
  .custom-header p {
    margin-top: 0.5em;
    font-size: 1.1em;
    color: #2E2E2E; }

/* Contenido principal */
.container {
  padding: 2em;
  max-width: 960px;
  margin: auto; }

/* Galería de imágenes */
.gallery .grid {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1em; }

.gallery .grid img {
  width: 30%;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

/* Pie de página */
footer {
  background-color: #6B1E2E;
  color: white;
  text-align: center;
  padding: 1em;
  margin-top: 3em; }
