/* Reset global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Header */
header {
  background-color: #222;
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header h1 {
  font-size: 2.5rem;
  color: #ff6347; /* Naranja tomate */
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff6347; /* Naranja tomate */
  text-decoration: underline;
}

/* Main content */
main {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

section {
  margin-bottom: 40px;
}

section h2 {
  color: #ff6347;
  font-size: 2rem;
  margin-bottom: 20px;
}

section p, section ul {
  font-size: 1.2rem;
  color: #ddd;
}

ul li {
  margin-bottom: 10px;
}

/* Gallery */
.image-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.image-gallery img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
}

.image-gallery img:hover {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: #222;
  text-align: center;
  padding: 15px;
  font-size: 1rem;
  color: #bbb;
  margin-top: 40px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  nav a {
    font-size: 1rem;
  }

  main {
    padding: 20px;
  }

  .image-gallery {
    justify-content: center;
  }

  .image-gallery img {
    max-width: 100%;
  }
}
