/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  background-color: #0e0e0f;
  color: #fff;
  line-height: 1.6;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #111;
  border-bottom: 2px solid #ff4500;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 60px;
}
.brand-text h1 {
  font-size: 1.8rem;
  color: #ff4500;
}
.brand-text span {
  font-size: 0.9rem;
  color: #fff;
}
.site-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.site-nav a.active {
  color: #ff4500;
}
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
}

/* HERO */
.hero {
  background: url('/images/banner.png') no-repeat center center/cover;
  text-align: center;
  padding: 100px 20px 60px;
}
.hero h2 {
  font-size: 2.5rem;
  color: #ff4500;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ff4500;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: #ff6a1a;
}
.socials {
  margin-top: 20px;
}
.socials a img {
  height: 40px;
  margin: 0 10px;
}

/* MEMBERS */
.members {
  padding: 60px 20px;
  text-align: center;
}
.members h2 {
  font-size: 2rem;
  color: #ff4500;
  margin-bottom: 30px;
}
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.member-card {
  background-color: #1a1a1c;
  padding: 20px;
  border-radius: 10px;
  width: 220px;
  border: 1px solid #262628;
}
.member-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}
.member-card h3 {
  font-size: 1.2rem;
  color: #fff;
}
.member-card p {
  font-size: 0.9rem;
  color: #ccc;
}

/* DASHBOARD */
.dashboard {
  background-color: #121213;
  padding: 60px 20px;
  text-align: center;
}
.dashboard h2 {
  font-size: 2rem;
  color: #ff4500;
  margin-bottom: 30px;
}
.grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.panel {
  background-color: #1a1a1c;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  border: 1px solid #262628;
}
.panel h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
}
.panel ul {
  list-style: none;
  padding-left: 0;
}
.panel ul li {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 6px;
}

/* FOOTER */
.site-footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #aaa;
  border-top: 2px solid #ff4500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .site-nav ul {
    display: none;
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 10px;
    border: 1px solid #262628;
  }
  .menu-toggle {
    display: block;
  }
  .grid {
    flex-direction: column;
    align-items: center;
  }
}