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

body {
  background: #f5f0e6 url('../images/background.avif') repeat;
  color: #2c1b10;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #4a2c2a, #2c1b10);
  color: #f5e1a4;
  padding: 1.5rem;
  border-bottom: 6px solid #b08d57;
}

header .crest {
  height: 80px;
  margin-right: 20px;
  border: 4px solid #b08d57;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

header h1 {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
  color: #f5e1a4;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

nav ul li {
  margin: 0 1rem;
}

nav ul li a {
  color: #f5e1a4;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  color: #ffd700;
  text-shadow: 0 0 5px #ffd700;
}

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255,255,255,0.85);
  border: 8px solid #b08d57;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

main h2 {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  color: #3b2a1a;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

main p {
  margin-bottom: 1rem;
  text-align: justify;
  font-family: 'Cormorant Garamond', serif;
  color: #2c1b10;
  line-height: 1.6;
}

main ul, main ol {
  margin: 1rem 2rem;
  padding: 0;
  color: #2c1b10;
  font-family: 'Cormorant Garamond', serif;
}

main li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
  position: relative;
}

main ul li::before {
  content: "✦";
  color: #b08d57;
  position: absolute;
  left: -1.5rem;
}

main section {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 6px solid #b08d57;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0,0,0,0.25);
}

main section h3 {
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  color: #4a2c2a;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  border-bottom: 2px solid #b08d57;
  padding-bottom: 0.5rem;
}

main section p {
  margin-bottom: 0.5rem;
  text-align: justify;
  font-family: 'Cormorant Garamond', serif;
  color: #2c1b10;
  line-height: 1.6;
}

main img {
  display: block;
  margin: 2rem auto;
  border: 8px solid #b08d57;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  max-width: 100%;
  height: auto;
}

form {
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 600px;
  background: rgba(255,255,255,0.9);
  border: 6px solid #b08d57;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0,0,0,0.25);
  font-family: 'Cormorant Garamond', serif;
  color: #2c1b10;
}

fieldset {
  border: 3px solid #b08d57;
  padding: 1rem;
  margin-bottom: 1rem;
}

legend {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #4a2c2a;
  padding: 0 0.5rem;
}

label {
  display: block;
  margin: 0.5rem 0;
  cursor: pointer;
}

input[type="radio"] {
  margin-right: 0.5rem;
  accent-color: #b08d57;
}

input[type="submit"] {
  background: #7a3e2d;
  color: #f5e1a4;
  border: 3px solid #b08d57;
  padding: 0.5rem 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

input[type="submit"]:hover {
  background: #b08d57;
  color: #2c1b10;
  box-shadow: 0 0 10px #ffd700;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.gallery figure {
  background: rgba(255,255,255,0.9);
  border: 6px solid #b08d57;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  padding: 1rem;
  text-align: center;
  max-width: 300px;
}

.gallery img {
  width: 100%;
  height: auto;
  border: 4px solid #b08d57;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin-bottom: 0.5rem;
}

.gallery figcaption {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #4a2c2a;
  margin-top: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

main iframe {
  display: block;
  margin: 2rem auto;
  width: 90%;
  max-width: 1000px;
  height: 700px;
  border: 8px solid #b08d57;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  background: #fff;
}

.share-buttons {
  margin: 2rem 0;
  text-align: center;
}

footer {
  background: linear-gradient(to right, #2c1b10, #4a2c2a);
  color: #f5e1a4;
  text-align: center;
  padding: 1rem;
  border-top: 6px solid #b08d57;
}

footer a {
  color: #ffd700;
  text-decoration: none;
}

footer a:hover {
  text-shadow: 0 0 5px #ffd700;
}