/* Reset and global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #121212; /* Dark charcoal background */
  color: #eee; /* light grey text */
}

/* Headings and titles */
h1,
h2,
h3,
.gold-title {
  color: #ffffff; /* White for all titles */
}

/* Header and footer general font */
header,
footer {
  font-family: Arial, sans-serif;
}

/* Header styles */
header {
  background-color: #6A0DAD; /* Rich purple */
  padding: 10px 5px;
  text-align: center;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px; /* Space below header */
}

header h1 {
  margin-bottom: 10px;
  font-size: 1.5em;
  color: #ffffff;
}

header h2 {
  margin-bottom: 10px;
  font-size: 1.25em;
  color: #ffffff;
}

/* Sections */
section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

section h2,
section h3 {
  margin-bottom: 15px;
  color: #ffffff;
}

/* Paragraphs */
p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #ccc; /* Soft light gray */
}

/* Buttons & Links */
.button,
.event-link {
  display: inline-block;
  background-color: #6A0DAD; /* Primary purple */
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.button:hover,
.event-link:hover {
  background-color: #8A2BE2; /* Lighter purple on hover */
  transform: scale(1.05);
}

/* Specific styles for .event-link */
.event-link {
  padding: 6px 12px;
  font-size: 0.85em;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

nav a {
  text-decoration: underline;
  color: #ffffff; /* White for navigation links */
}

nav a:hover {
  background-color: #ffffff; /* White background on hover */
  color: #121212; /* Dark text on hover for contrast */
}

/* 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-color: #ffffff; /* White */
  margin: 60px auto;
  width: 60%;
  max-width: 1000px;
  border-radius: 6px;
  border: none;
  outline: none;
}

/* Footer styles */
footer {
  background-color: #6A0DAD; /* Match header purple */
  color: #ffffff;
  padding: 20px 5px 10px 5px; /* Reduced bottom padding from 20px to 10px */
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Navigation Buttons Container */
.nav-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Style for each navigation button */
.nav-button {
  background-color: #4B0082; /* Dark purple for contrast */
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 0.85em;
  width: 125px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: background-color 0.3s, transform 0.2s;
}

.nav-button:hover {
  background-color: #8A2BE2; /* Lighter purple on hover */
  transform: scale(1.05);
}