@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

html,body {
  height:100%;
  margin:0;
  font-family:"Jost",sans-serif;
}
body {
  display:flex;
  flex-direction:column;
  background:#000
}
.main-container {
  flex:1;
  display:flex;
  flex-direction:column;
}

h1, h2, h3 {
  font-family:"Goldman",sans-serif;
}

/* =======================================================
   HEADER
   ======================================================= */
header {
  background:#280000;
  color:#f5f5f5;
  /* 🔧 Adjust header height here */
  padding:20px 25px;
  letter-spacing:.5px;
}

.logo {
  font-size:1.5rem;
  font-weight:700;
  text-transform:uppercase;
  color:#f5f5f5;
  text-decoration:none;
}

/* =======================================================
   JOIN BUTTON COLORS
   ======================================================= */
/* Change button background and hover colors here */
.join-btn {
  background:#720b00;      /* 🔧 Main button color */
  color:#fff;
  border:none;
  padding:8px 12px;
  border-radius:6px;
  font-weight:500;
  text-decoration:none;
  font-size:0.9rem;
  margin-right:18px;        /* Adds more spacing from hamburger */
}
.join-btn:hover {
  background:#8c0d00;       /* 🔧 Hover color */
  color:#fff;
}

/* =======================================================
   HAMBURGER MENU COLORS
   ======================================================= */
/* Change hamburger bar color here */
.hamburger {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  width:40px;
  height:40px;
  cursor:pointer;
  border-radius:6px;
  transition:background-color .3s;
}
.hamburger span {
  background:#720b00;      /* 🔧 Bar color */
  height:3px;
  width:25px;
}
.hamburger:hover {
  background-color:rgb(0 0 0 / 75%);
}
.hamburger:hover span {
  background:#8c0d00;      /* 🔧 Bar color */
}

.hamburger:active {
  background-color:rgba(255,255,255,0.3);
}

/* =======================================================
   SIDEBAR
   ======================================================= */
.sidebar {
  background:#050505;
  padding:20px;
  min-height:calc(100vh - 80px);
  border-right:2px solid #220000;
}
.sidebar ul {
  list-style:none;
  padding-left:0;
  margin:0;
  font-family:"Goldman",sans-serif;
}
.sidebar li { padding:6px 0; }

.sidebar>ul>li>a {
  color:#f0f0f0;
  font-size:1.05rem;
  font-weight:none;
  text-decoration:none;
  display:block;
  padding:6px 8px;
  border-radius:4px;
}
.sidebar>ul>li>a:hover {
  background:#8c0d00;
  color:#fff;
}

.submenu {
  list-style:none;
  padding-left:15px;
  display:none;
}
.submenu a {
  color:#c7c7c7;
  font-size:0.95rem;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
  padding:4px 12px;
  border-radius:4px;
}
.submenu a:hover {
  background:#8c0d00;
  color:#fff;
}
.submenu img.icon {
  width:18px;
  height:18px;
  object-fit:contain;
  filter:brightness(0.9);
}
.arrow {
  font-size:0.7rem;
  margin-left:5px;
}

/* =======================================================
   CONTENT
   ======================================================= */
.content {
  background:#000000;
  color:#ddd;
  padding:20px;
  display:flex;
  flex-direction:column;
  min-height:calc(100vh - 80px);
}
.breadcrumbs {
  font-size:0.9rem;
  margin-bottom:20px;
  color:#8f8f8f;
}
.breadcrumbs a {
  color:#b83527;
  text-decoration:none;
}
.breadcrumbs a:hover {
  text-decoration:underline;
}
.content img {
  max-width:300px;
  margin:10px;
  border-radius:6px;
}
.img-right { float:right; }
.img-left { float:left; }

/* =======================================================
   FOOTER
   ======================================================= */
footer {
  border-top:1px solid #0a0a0a;
  padding:8px 20px;
  color:#333333;
  font-size:0.75rem;
  margin-top:auto;
  background:none;
}
footer a {
  color:#474747;
  text-decoration:none;
}
footer a:hover {
  text-decoration:underline;
}



.page {max-width:1200px; margin:0 auto }
.page__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-block: 1rem 1.5rem; }
@media (min-width: 800px) { .page__grid { grid-template-columns: repeat(3, 1fr); } }
.card { background: #232323; border: 0px; border-radius: 12px; padding: 1rem; color:#fff }
.card h2 { margin-top: 0; font-size: 1.1rem; }
.list { padding-left: 1.2rem; }
.legend { margin-top: .75rem; }
.legend__list { display: grid; gap: .5rem; padding-left: 0; list-style: none; }
.badge { display: inline-block; padding: .1rem .5rem; border-radius: 999px; font-size: .9rem; background: #1b1f2a; border: 1px solid #2a3142; }
.badge--active { border-color: #2aa745; }
.badge--pending { border-color: #c9a227; }
.badge--completed { border-color: #2a7ec9; }
.badge--expired { border-color: #c92a2a; }



@media (max-width:768px) {
  .sidebar {
    display:none;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    z-index:999;
    border-right:none;
    border-bottom:1px solid #333;
  }
  .header-right {
    flex-direction:row;
    gap:10px;
  }
}