:root {
  --primary-blue: #001f5b;
  --accent-red: #b40000;
  --gold: #f7c400;
  --steel: #1c1c1c;
  --text-light: #d4d4d4;
  --discord: #5865f2;
  --hover-blue: #007bff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--steel);
  color: var(--text-light);
  line-height: 1.6;
}

header {
  background: var(--primary-blue);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

nav a:hover {
  background-color: var(--accent-red);
}

.hero {
  background: linear-gradient(to bottom right, var(--primary-blue), var(--accent-red));
  color: var(--text-light);
  text-align: center;
  padding: 100px 20px;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 20px auto;
  background-color: #222;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

h2 {
  margin-bottom: 20px;
  color: var(--gold);
  border-left: 6px solid var(--accent-red);
  padding-left: 10px;
}

h3 {
  color: var(--accent-red);
}

ul {
  padding-left: 20px;
  margin-top: 10px;
}

p, li {
  font-size: 1.1em;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--discord);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
  margin-top: 10px;
}

.btn:hover {
  background: var(--hover-blue);
}

/* Features */
.features {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  margin-top: 40px;
  flex-wrap: wrap;
}

.feature-box {
  background: #2a2a2a;
  padding: 20px;
  border-left: 5px solid var(--accent-red);
  border-radius: 8px;
  flex: 1 1 250px;
}

/* Discord Banner */
.discord-banner {
  text-align: center;
  background: linear-gradient(to right, var(--accent-red), var(--primary-blue));
  color: var(--text-light);
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 40px;
}

/* Team Section */
.team {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  flex: 1 1 200px;
}

.team-member img {
  width: 150px;
  border-radius: 50%;
  border: 4px solid var(--accent-red);
  margin-bottom: 10px;
}

/* Partners Grid */
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-card {
  flex: 1 1 250px;
  background: #2c2c2c;
  border: 2px solid var(--primary-blue);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: var(--text-light);
}

/* Gallery */
.gallery-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-grid img {
  width: 300px;
  border-radius: 10px;
  border: 3px solid var(--accent-red);
  transition: transform 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Contact Form */
form#contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 12px;
  font-size: 1em;
  border: 2px solid var(--primary-blue);
  border-radius: 6px;
  background-color: #2e2e2e;
  color: var(--text-light);
}

form button {
  background: var(--primary-blue);
  color: var(--text-light);
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background: var(--accent-red);
}

/* Footer */
footer {
  text-align: center;
  background: var(--primary-blue);
  color: var(--text-light);
  padding: 20px 0;
  margin-top: 40px;
}
#event-signup form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

#event-signup input, #event-signup textarea {
  padding: 10px;
  border-radius: 5px;
  border: 2px solid var(--primary-blue);
  background: #2a2a2a;
  color: var(--text-light);
}

#attendee-list {
  margin-top: 20px;
  list-style: disc;
  padding-left: 20px;
}
#staff-leadership {
  text-align: center;
  margin-top: 40px;
}

.leadership-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.top-leaders, .lower-leaders {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.middle-leader {
  display: flex;
  justify-content: center;
}

.leader-card {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  text-align: center;
}

.leader-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--accent-red);
  object-fit: cover;
  margin-bottom: 10px;
}

.role-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.8em;
  margin-top: 6px;
  text-transform: uppercase;
}

.role-badge.red    { background: #b40000; color: white; }
.role-badge.blue   { background: #001f5b; color: white; }
.role-badge.gold   { background: #f7c400; color: black; }
.role-badge.green  { background: #00c851; color: white; }

.second-layer, .third-layer {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.leadership-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
#useful-links {
  margin: 40px auto;
  text-align: center;
}

.links-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.links-list li {
  margin-bottom: 20px;
}

.links-list a {
  font-size: 1.2rem;
  background: #2a2a2a;
  padding: 12px 20px;
  display: inline-block;
  border-radius: 8px;
  color: var(--text-light);
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.links-list a:hover {
  background: var(--primary-blue);
  transform: scale(1.05);
}

.links-list a i {
  margin-right: 10px;
  color: var(--accent-red);
}
#useful-links {
  margin: 60px auto;
  text-align: center;
}

.link-card-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.link-card {
  background: #1e1e1e;
  padding: 20px;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card a {
  text-decoration: none;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.link-card img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.link-card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.5);
}

.link-card:hover img {
  transform: scale(1.1);
}
#useful-links {
  margin: 60px auto;
  text-align: center;
}

.link-card-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.link-card {
  background: #1e1e1e;
  padding: 20px;
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card a {
  text-decoration: none;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.link-card img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.link-card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.card-desc {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.4;
  padding: 0 5px;
}

.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.5);
}

.link-card:hover img {
  transform: scale(1.1);
}
.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.partner-card {
  flex: 1 1 250px;
  background: #2c2c2c;
  border: 2px solid var(--primary-blue);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: var(--text-light);
}

.partner-card img {
  margin-bottom: 15px;
}

.partner-card .btn {
  margin-top: 10px;
}
.section-intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #ccc;
}
.calendar-wrapper {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}
