/* Reset y tipografía */
body {
  background-color: #0a0a0a;
  background-image: url('castillo_hp.jpg');
  background-size: cover;
  background-attachment: fixed;
  color: #f5f5f5;
  font-family: 'Times New Roman', serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  background-color: rgba(0, 0, 0, 0.85);
  color: #d4af37;
  text-align: center;
  padding: 30px 0;
  border-bottom: 3px solid #1a472a;
}

h1 {
  font-size: 36px;
  text-shadow: 0 0 15px #1a472a;
}

section {
  max-width: 950px;
  margin: 60px auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 25px #1a472a;
}

h2 {
  color: #d4af37;
  margin-bottom: 20px;
  border-bottom: 1px solid #1a472a;
  padding-bottom: 10px;
}

ul {
  list-style-type: none;
  padding: 0;
  line-height: 1.8;
}

li {
  margin-bottom: 12px;
  border-left: 4px solid #1a472a;
  padding-left: 12px;
}

a {
  color: #c1d4cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #d4af37;
}

.bottom-bar {
  width: 100%;
  background: rgba(10, 15, 27, 0.85);
  border-top: 2px solid #1a472a;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.bottom-bar a {
  display: inline-block;
  background: none;
  border: 1px solid rgba(202, 163, 59, 0.4);
  color: #f5f5f5;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

.bottom-bar a:hover {
  background: rgba(202, 163, 59, 0.2);
  transform: translateY(-3px);
}

footer {
  text-align: center;
  padding: 20px;
  color: #ccc;
  background-color: rgba(0, 0, 0, 0.85);
  border-top: 2px solid #1a472a;
  margin-top: 40px;
}
