/* General */
body {
  margin: 0;
  background-color: #f5f5dc;
  font-family: Arial, sans-serif;
}

/* Header */
header {
  background-color: #2e8b57;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 50px;
}

nav {
  display: flex;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 5px 10px;
}

nav a:hover {
  background-color: #3cb371;
  border-radius: 5px;
}

/* Título principal */
.titulo-turismo {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  text-align: center;
  margin: 40px 0;
  color: #8B0000;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px #444;
}

/* Galería turismo */
.galeria-turismo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.destino {
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.destino:hover {
  transform: scale(1.05);
}

.destino img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.destino h2 {
  font-family: 'Georgia', serif;
  font-size: 22px;
  color: #2e8b57;
  margin-bottom: 10px;
}

.destino p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 50px;
  padding: 15px;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #ddd;
}
