@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Open+Sans&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: ;
  color: #3b3b3b;
  line-height: 1.6;
}

header {
  background: #faf6e8 ;
  border-bottom: 3px solid #d4af37;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

h1 {
  font-size: 5em;
  color: #2c2c2c;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

nav {
  background: #ffffff;
  padding: 15px;
  border-top: 2px solid #e2c068;
  border-bottom: 2px solid #e2c068;
}

nav ul {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
  margin: 0 20px;
}

nav a {
  text-decoration: none;
  color: #6b4e16;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s;
}

nav a:hover {
  color: #b58e00;
}

section {
  background: #fffdf8;
  margin: 25px auto;
  padding: 25px;
  max-width: 900px;
  border-left: 5px solid #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
  border-radius: 8px;
}

h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2e2e2e;
}

button {
  background: linear-gradient(to right, #d4af37, #c49a00);
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  margin-top: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

button:hover {
  background: #b58e00;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.galeria img {
  width: 180px;
  margin: 10px;
  border: 4px solid #e4c77a;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.galeria img:hover {
  transform: scale(1.05);
}

footer {
  text-align: center;
  background: #f8f5ec;
  padding: 20px;
  font-size: 0.9em;
  color: #7c693f;
  border-top: 1px solid #e0c86a;
}