/* styles.css */

/* Reset styles & set global font */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000;
  color: #fff;
}

/* Headings and titles */
h3,
.gold-title {
  color: #ffd700;
}

/* Common font for header and footer */
header,
footer {
  font-family: Arial, sans-serif;
}

/* Header styles */
header {
  background-color: #6a0dad;
  padding: 40px 20px;
  text-align: center;
  position: relative;
}

header h1 {
  margin-bottom: 10px;
  font-size: 1.5em; /* h1 size */
}

header h2 {
  margin-bottom: 10px;
  font-size: 1.25em; /* between h1 and h3 */
}

/* Sections */
section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

section h2,
section h3 {
  margin-bottom: 15px;
}

/* Paragraphs */
p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

/* Buttons & Links */
.button,
.home-button,
.event-link {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  margin-top: 20px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Primary Button */
.button {
  background-color: #6a0dad;
  color: #fff;
}

.button:hover {
  background-color: #555;
}

/* Home Button Specific Styles */
.home-button {
  background-color: #fff;
  color: #000;
  padding: 8px 16px; /* Updated padding for size */
}

.home-button:hover {
  background-color: #555;
  color: #fff;
}

.event-link:hover {
  background-color: #555;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

nav a {
  text-decoration: underline;
}

nav a:hover {
  background-color: #fff;
  color: #222;
}

/* 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: #6a0dad;
  margin: 60px auto;
  width: 60%;
  max-width: 1000px;
  border-radius: 6px;
}

/* Footer styles */
footer {
  background-color: #6a0dad;
  padding: 1em;
  margin-top: auto; /* Push footer to the bottom if content is short */
}

/* Footer container styles */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
}

/* Testimonials section */
#testimonials {
  padding: 50px 20px;
  background-color: #000;
  text-align: center;
}

.testimonial {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial p {
  font-style: italic;
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #ddd;
}

.testimonial h3 {
  margin-top: 0;
  font-weight: normal;
  color: #ffd700;
}