/* Importing custom fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Playfair+Display:wght@600&display=swap');

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #121212; /* Dark background */
  color: #e0e0e0;             /* Light text */
  line-height: 1.6;
}

/* Links */
a {
  color: #80d8ff; /* blue for links */
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Layout container */
.page-wrapper {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  gap: 2rem;
}

/* Header Styles */
header {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #1f1f1f;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
}
header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #ffffff;
}
header h2 {
  font-weight: 300;
  color: #bbbbbb;
  margin-top: 0.5rem;
}

/* Main Content Styling */
.main.supporting {
  flex: 3;
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

/* Section Headings */
h3 {
  color: #ffcc80; /* Warm gold headings */
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
}

/* Paragraphs and Section Content */
section.intro,
.explanation,
.participation,
.benefits,
.requirements {
  margin-bottom: 2rem;
}

/* Sidebar Styling */
.sidebar {
  flex: 1;
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Sidebar Lists */
.sidebar h3 {
  color: #90caf9;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.sidebar ul {
  list-style: none;
  padding-left: 0;
}
.sidebar li {
  margin-bottom: 0.5rem;
}
.sidebar a {
  color: #b39ddb;
}

/* Footer Styles */
footer {
  text-align: center;
  padding: 1rem;
  background: #2a2a2a;
  margin-top: 2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #aaaaaa;
}

/* Extra Elements (default display hidden or background styling only) */
.extra1, .extra2, .extra3, .extra4, .extra5, .extra6 {
  display: none;
}

/* Responsive Design */
@media (max-width: 900px) {
  .page-wrapper {
    flex-direction: column;
    padding: 1rem;
  }
  header h1 {
    font-size: 2.2rem;
  }
  header h2 {
    font-size: 1.2rem;
  }
}

/* Additional Notes:
   - used flexbox for layout flexibility and spacing.
   - The page uses two fonts: Roboto (clean sans-serif) and Playfair Display (stylized serif for headers).
*/