/* Basic Reset */
* {
  margin-left: 20px;
  padding: 0;
  box-sizing: border-box;
}

/* Body and overall styling */
body {
  font-family: 'Cinzel', serif, 'Georgia', serif; /* Strong, medieval-style font */
  font-size: 18px;
  line-height: 1.7;
  color: #f0e6d2; /* Pale parchment color */
  background-color: #2a1a0b; /* Dark earthy brown */
  background-image: url('https://example.com/textures/rough-leather.jpg'); /* Rough leather texture */
  background-repeat: repeat;
}

/* Container for page content */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
  background: rgba(58, 38, 12, 0.85); /* Semi-transparent dark overlay for contrast */
  border: 4px solid #7a4a0b; /* Rustic bronze border */
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(122, 74, 11, 0.7);
}

/* Header */
header {
  background-color: #7a4a0b; /* Bronze/gold tone */
  color: #f0e6d2;
  padding: 25px 0;
  text-align: center;
  text-shadow: 1px 1px 2px #3a2300;
  border-bottom: 3px solid #4b2c00;
}

header h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Cinzel Black', serif;
}

/* Navigation */
nav {
  background-color: #4b2c00; /* Dark wood tone */
  border-top: 3px solid #7a4a0b;
  border-bottom: 3px solid #7a4a0b;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: #f0e6d2;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 12px;
  font-family: 'Cinzel', serif;
  text-shadow: 1px 1px 1px #2a1a0b;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: #7a4a0b;
  color: #fff4d1;
  box-shadow: 0 0 8px 2px #b37a00;
}

/* Main content area */
main {
  margin: 25px 0;
  font-family: 'Georgia', serif;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #e6d9b8;
  text-shadow: 0 0 2px #362800;
}

/* Headings */
h2 {
  margin-bottom: 12px;
  color: #d19c2e; /* Deep gold */
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 0 4px #7a4a0b;
  border-bottom: 2px solid #7a4a0b;
  padding-bottom: 6px;
}

/* Paragraphs */
p {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Footer */
footer {
  background-color: #3a2300;
  color: #b7a865;
  text-align: center;
  padding: 18px 0;
  font-size: 0.95rem;
  border-top: 3px solid #7a4a0b;
  font-family: 'Georgia', serif;
  text-shadow: 1px 1px 1px #2a1a0b;
}

/* Buttons */
.wide-button {
  width: 200px;  /* Set the width as desired */
}