/* styles.css */

/* Reset & Base Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000;
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #ddd;
}

/* Headings */
h1 {
  font-size: 1.5em;
}
h2 {
  font-size: 1.25em;
}
h3 {
  font-family: Arial, sans-serif;
  color: #FFD700;
}

/* Header */
header {
  background-color: #6a0dad;
  padding: 40px 20px;
  text-align: center;
}
header h1 {
  margin-bottom: 10px;
  font-size: 1.5em;
}
header h2 {
  margin-bottom: 10px;
  font-size: 1.25em;
}

/* Content Container */
.content-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}
.content-container h3 {
  margin-bottom: 15px;
}
p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

/* Buttons */
.button {
  display: inline-block;
  background-color: #6a0dad;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #555;
}

/* Image Wrapper for Centering & Images */
.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0;
}
img {
  width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Decorative Line */
.line {
  height: 10px;
  background-color: #6a0dad;
  margin: 60px auto;
  width: 60%;
  max-width: 1000px;
  border-radius: 6px;
}

/* Footer */
footer {
  background-color: #6a0dad;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Home Button in Footer & Event Link Style */
.home-button,
.event-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  transition: background-color 0.3s, color 0.3s;
  margin: 10px 0;
  text-decoration: none;
}
.home-button {
  background-color: #fff;
  color: #000;
}
.home-button:hover {
  background-color: #eee;
  color: #222;
}
.event-link {
  padding: 5px 10px;
  font-size: 12px;
  background-color: #6a0dad;
  color: #fff;
}