/* Reset & Base Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Headings & Titles */
h3,
.gold-title {
  font-size: 1.17em;
  margin-bottom: 15px;
  color: #ffd700;
}
header h1 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #fff;
}
header h2 {
  font-size: 1.25em;
  margin-bottom: 20px;
  color: #fff;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}
nav a {
  text-decoration: underline;
}
nav a:hover {
  background: #fff;
  color: #222;
}

/* Header */
header {
  background: #6a0dad;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

/* Sections */
section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}
section h2,
section h3 {
  margin-bottom: 15px;
}

/* Paragraphs */
p {
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  font-size: 1.1em;
}

/* Buttons */
.button {
  display: inline-block;
  background: #6a0dad;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  transition: background 0.3s;
}
.button:hover {
  background: #555;
}

/* Images */
img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Decorative Line */
.line {
  height: 10px;
  background: #6a0dad;
  margin: 60px auto;
  width: 60%;
  max-width: 1000px;
  border-radius: 6px;
}

/* Footer */
footer {
  background: #6a0dad;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Home Button & Custom Link Styles */
.home-button,
.custom-link {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  color: #000;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.home-button:hover {
  background: #777;
  color: #fff;
}
.custom-link {
  padding: 10px 20px;
  background: #6a0dad;
  color: #fff;
  font-weight: bold;
}
.custom-link:hover {
  background: #777;
  color: #6a0dad;
}