@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');


:root{
  --black:#090a09;
  --panel:#121412;
  --panel2:#181a18;
  --gold:#d59b19;
  --gold2:#f0b62b;
  --white:#f2f0e9;
  --muted:#a8aaa4;
  --line:#38362d;
}


*{
  box-sizing:border-box;
}


html{
  scroll-behavior:smooth;
}


body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:Rajdhani,Arial,sans-serif;
  font-size:16px;
}


a{
  color:inherit;
  text-decoration:none;
}


button,
input,
textarea,
select{
  font:inherit;
}


/* ============================================================
   HEADER
   ============================================================ */

.topbar{
  min-height:92px;
  background:#080908;
  display:flex;
  align-items:center;
  padding:0 28px;
  border-bottom:1px solid #292922;
  position:sticky;
  top:0;
  z-index:20;
}


.brand{
  width:210px;
  height:92px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex-shrink:0;
  overflow:visible;
}


.brand img{
  display:block;
  width:82px;
  height:82px;
  object-fit:contain;
  object-position:center;
  mix-blend-mode:normal;
}


.topbar nav{
  display:flex;
  height:100%;
  flex:1;
  justify-content:center;
  align-items:stretch;
}


.topbar nav a{
  min-width:78px;
  padding:14px 10px;
  display:flex;
  flex-direction:column;
  gap:7px;
  align-items:center;
  justify-content:center;
  font-family:Oswald;
  letter-spacing:.5px;
  font-size:12px;
  border-bottom:2px solid transparent;
  color:#eee;
}


.topbar nav a:first-letter{
  font-size:21px;
}


.topbar nav a:hover,
.topbar nav a.active{
  color:var(--gold2);
  background:#17150f;
  border-bottom-color:var(--gold);
}


.auth{
  display:flex;
  gap:12px;
  margin-left:18px;
  flex-shrink:0;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #7e5d1a;
  padding:10px 20px;
  min-height:38px;
  font-family:Oswald;
  font-size:13px;
  letter-spacing:.7px;
  cursor:pointer;
}


.btn.gold{
  background:linear-gradient(#e4aa24,#bd8312);
  color:#090909;
  border-color:#dba52a;
}


.btn.dark{
  background:#171815;
}


.btn.outline{
  background:#17150f;
  color:var(--gold2);
}


.btn.big{
  padding:14px 27px;
  margin-right:10px;
}


.btn.wide{
  width:100%;
  margin-top:15px;
}


.flash{
  position:fixed;
  top:100px;
  right:20px;
  z-index:50;
  background:var(--gold);
  color:#111;
  padding:12px 18px;
}


/* ============================================================
   HERO / MAIN BANNER
   ============================================================ */

.hero{
  min-height:430px;

  background:
    linear-gradient(
      90deg,
      rgba(5,6,5,.48),
      rgba(5,6,5,.10) 50%,
      rgba(5,6,5,.40)
    ),
    url('../img/home-banner.png') center center / 100% auto no-repeat;

  background-color:#090a09;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:50px 8%;

  border-bottom:1px solid #302d25;
}


.hero-copy{
  max-width:720px;
}


.kicker,
.pagehead small{
  font-family:Oswald;
  color:var(--gold2);
  font-weight:600;
  letter-spacing:3px;
}


.hero h1{
  font-family:Oswald;
  font-size:78px;
  line-height:.88;
  margin:10px 0 18px;
  letter-spacing:2px;
  text-shadow:0 5px 20px #000;
}


.hero h1 span{
  display:block;
  color:#eee;
}


.hero h1 strong{
  display:block;
  color:var(--gold2);
}


.hero p{
  letter-spacing:2px;
  font-weight:600;
}


.hero-card{
  width:320px;
  background:rgba(15,16,15,.82);
  border:1px solid #4a402b;
  padding:22px;
  box-shadow:0 10px 40px #000;
}


.hero-card h3{
  font-family:Oswald;
  margin:0 0 12px;
}


.status{
  color:#63d27a;
  font-size:12px;
  text-align:right;
}


.stat{
  display:flex;
  justify-content:space-between;
  border-bottom:1px solid #39362d;
  padding:13px 0;
  color:#aaa;
  gap:12px;
}


.stat b{
  color:#eee;
  text-align:right;
}


/* ============================================================
   MAIN GRIDS
   ============================================================ */

.grid3,
.grid4{
  width:92%;
  max-width:1420px;
  margin:0 auto;
}


.grid3{
  display:grid;
  grid-template-columns:1.4fr .7fr 1.25fr;
  gap:10px;
  margin-top:14px;
}


.grid3 article,
.grid4 article{
  background:linear-gradient(135deg,#111311,#151714);
  border:1px solid #34342d;
  padding:20px;
}


.grid3 h2,
.grid4 h2{
  font-family:Oswald;
  color:var(--gold2);
  font-size:19px;
  margin:0 0 16px;
  letter-spacing:.7px;
}


.intro p{
  color:#d0d0ca;
  line-height:1.55;
}


/* ============================================================
   PILLARS
   ============================================================ */

.pillars{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin-top:20px;
}


.pillars div{
  text-align:center;
  color:var(--gold2);
  font-size:24px;
}


.pillars b,
.pillars small{
  display:block;
  color:#eee;
  font-family:Oswald;
  font-size:12px;
}


.pillars small{
  font-family:Rajdhani;
  color:#aaa;
  font-size:12px;
  margin-top:3px;
}


/* ============================================================
   QUICK LINKS
   ============================================================ */

.quick{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:11px 0;
  border-bottom:1px solid #2c2d28;
  gap:10px;
}


.quick span{
  color:var(--gold2);
}


/* ============================================================
   FEATURED
   ============================================================ */

.featured{
  min-width:0;
}


.featured-content{
  background:#0d0e0d;
  border:1px solid #34342d;
  overflow:hidden;
}


.featured-image{
  display:block;
  width:100%;
  height:145px;
  object-fit:cover;
}


.featured-copy{
  padding:14px;
}


.featured-copy small{
  display:block;
  color:var(--gold2);
  font-family:Oswald;
  font-size:10px;
  letter-spacing:1.5px;
  margin-bottom:6px;
}


.featured-copy strong{
  display:block;
  color:#eee;
  font-family:Oswald;
  font-size:25px;
  line-height:1.05;
}


.featured-copy span{
  display:block;
  margin-top:7px;
  color:#aaa;
  font-size:12px;
}


.featured-copy p{
  color:#bbb;
  line-height:1.4;
  font-size:13px;
  margin:8px 0;
}


.featured-copy a{
  display:inline-block;
  border:1px solid var(--gold);
  padding:7px 13px;
  margin-top:4px;
  color:var(--gold2);
  font-family:Oswald;
  font-size:11px;
}


.featured-empty{
  min-height:180px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background:#0d0e0d;
  border:1px solid #34342d;
  padding:20px;
}


.featured-empty small{
  color:var(--gold2);
  font-family:Oswald;
  letter-spacing:2px;
}


.featured-empty strong{
  font-family:Oswald;
  font-size:26px;
  margin:7px 0;
}


.featured-empty p{
  color:#aaa;
}


/* ============================================================
   LOWER GRID
   ============================================================ */

.lower{
  display:grid;
  grid-template-columns:1.1fr 1.1fr 1fr 1.05fr;
  gap:10px;
  margin-top:10px;
  margin-bottom:30px;
}


.grid4 h2{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}


.grid4 h2 a{
  font-family:Rajdhani;
  font-size:10px;
  color:#bbb;
  border:1px solid #37372f;
  padding:5px 8px;
}


.listrow{
  display:flex;
  gap:12px;
  padding:8px 0;
  border-bottom:1px solid #2b2c28;
}


.thumb{
  width:70px;
  height:55px;
  background:url('../img/hero.jpg') center/cover;
  flex:none;
  background-position:center;
}


.listrow b,
.listrow small,
.listrow em{
  display:block;
}


.listrow small,
.listrow em{
  font-size:12px;
  color:#aaa;
}


.listrow em{
  font-style:normal;
  margin-top:3px;
}


/* ============================================================
   EVENTS
   ============================================================ */

.eventrow{
  display:grid;
  grid-template-columns:48px 1fr auto;
  gap:10px;
  align-items:center;
  padding:9px 0;
  border-bottom:1px solid #2b2c28;
}


.date{
  background:#191a17;
  border:1px solid #39382f;
  text-align:center;
  padding:5px;
}


.date b,
.date small{
  display:block;
  font-family:Oswald;
}


.date b{
  font-size:20px;
  color:var(--gold2);
}


.date small{
  font-size:10px;
}


.eventrow small{
  display:block;
  color:#aaa;
}


.eventrow>a{
  border:1px solid #624a18;
  padding:6px 8px;
  color:var(--gold2);
  font-size:10px;
}


/* ============================================================
   COMMUNITY STATS
   ============================================================ */

.leader{
  display:grid;
  grid-template-columns:35px 1fr auto;
  padding:12px 0;
  border-bottom:1px solid #2b2c28;
}


.leader span{
  color:var(--gold2);
}


.leader strong{
  font-size:11px;
  color:#aaa;
}


/* ============================================================
   REVIEWS
   ============================================================ */

.review{
  border-bottom:1px solid #2b2c28;
  padding:8px 0;
}


.review span{
  float:right;
  color:var(--gold2);
}


.review p{
  font-size:12px;
  color:#bbb;
  margin:4px 0;
}


/* ============================================================
   GENERAL PAGES
   ============================================================ */

.page{
  width:92%;
  max-width:1200px;
  margin:0 auto;
  padding:55px 0 90px;
  min-height:70vh;
}


.page.narrow{
  max-width:600px;
}


.pagehead{
  margin-bottom:28px;
}


.pagehead h1{
  font-family:Oswald;
  font-size:52px;
  margin:7px 0;
}


.content-card{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:24px;
  background:var(--panel);
  border:1px solid #36372f;
  padding:20px;
  margin:12px 0;
}


.content-card.single{
  display:block;
}


.news-image{
  min-height:180px;
  background:#0b0c0b;
  overflow:hidden;
}


.news-image img{
  display:block;
  width:100%;
  height:100%;
  min-height:180px;
  object-fit:cover;
}


.content-card h2{
  font-family:Oswald;
  margin-top:0;
  color:#eee;
}


.content-card p{
  color:#bbb;
  line-height:1.6;
}


.news-summary{
  color:#d2d2ca !important;
  font-weight:600;
}


/* ============================================================
   NEWS
   ============================================================ */

.news-card{
  align-items:stretch;
}


.news-content{
  min-width:0;
}


/* ============================================================
   EVENT PAGES
   ============================================================ */

.event-card{
  grid-template-columns:260px 1fr;
  align-items:stretch;
}


.event-image{
  min-height:180px;
  background:#0b0c0b;
  overflow:hidden;
  display:flex;
  align-items:stretch;
  justify-content:center;
}


.event-image img{
  display:block;
  width:100%;
  height:100%;
  min-height:180px;
  object-fit:cover;
}


.event-content{
  min-width:0;
}


.event-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:8px 0 12px;
}


.event-meta strong,
.event-meta span{
  color:var(--gold2);
  font-family:Oswald;
}


.date.large{
  display:flex;
  height:100%;
  min-height:180px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  border:0;
}


.date.large b{
  font-size:48px;
}


.date.large small{
  font-size:16px;
}


/* ============================================================
   LOGIN / FORMS
   ============================================================ */

.login-card{
  background:var(--panel);
  border:1px solid #3a382e;
  padding:30px;
  display:grid;
  gap:18px;
}


.login-card label{
  display:grid;
  gap:7px;
  color:var(--gold2);
  font-family:Oswald;
}


.login-card input,
.login-card textarea,
.admin-card input,
.admin-card textarea,
.admin-card select,
.account-page input,
.account-page textarea,
.account-page select{
  width:100%;
  background:#0b0c0b;
  color:#eee;
  border:1px solid #3b3b34;
  padding:11px;
}


.login-card input:focus,
.login-card textarea:focus,
.admin-card input:focus,
.admin-card textarea:focus,
.admin-card select:focus,
.account-page input:focus,
.account-page textarea:focus,
.account-page select:focus{
  outline:none;
  border-color:var(--gold);
}


.account-links{
  margin-top:20px;
  text-align:center;
}


.account-links p{
  color:#aaa;
}


/* ============================================================
   ADMIN
   ============================================================ */

.admin{
  max-width:1400px;
}


.admin-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:14px;
}


.admin-card{
  background:var(--panel);
  border:1px solid #3a382e;
  padding:20px;
  min-width:0;
}


.admin-card form{
  display:grid;
  gap:10px;
}


.admin-card textarea{
  min-height:100px;
  resize:vertical;
}


.manage{
  display:flex;
  justify-content:space-between;
  gap:15px;
  align-items:center;
  border-top:1px solid #2e2f29;
  padding:10px 0;
}


.manage button,
.user-actions button,
.manage-actions button{
  background:#221714;
  color:#e4a73a;
  border:1px solid #68401c;
  padding:5px 9px;
  cursor:pointer;
}


.manage button:hover,
.user-actions button:hover,
.manage-actions button:hover{
  background:#2d1c15;
}


.manage>div:first-child{
  min-width:0;
}


.manage small{
  display:block;
  color:#8f908a;
  margin-top:3px;
}


.admin-empty{
  color:#777;
}


/* ============================================================
   UPLOADS
   ============================================================ */

.upload-label{
  display:grid;
  gap:7px;
  color:var(--gold2);
  font-family:Oswald;
}


.upload-label input[type="file"]{
  padding:9px;
}


.upload-help{
  display:block;
  color:#777;
  font-size:12px;
}


/* ============================================================
   ADMIN REVIEWS
   ============================================================ */

.review-stars{
  color:var(--gold2);
  margin-top:5px;
}


.review-approved{
  color:#63d27a;
}


.review-pending{
  color:var(--gold2);
}


.manage-actions{
  display:flex;
  flex-direction:column;
  gap:6px;
}


/* ============================================================
   USER MANAGEMENT
   ============================================================ */

.admin-users{
  grid-column:1/-1;
}


.user-management{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
  border-top:1px solid #2e2f29;
}


.user-info{
  min-width:0;
}


.user-info>div{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}


.user-info>b{
  font-family:Oswald;
}


.user-info small{
  display:block;
  color:#999;
  margin-top:4px;
}


.user-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:6px;
  align-items:center;
}


.user-badge{
  display:inline-flex;
  align-items:center;
  padding:3px 7px;
  font-family:Oswald;
  font-size:9px;
  letter-spacing:.5px;
  border:1px solid;
}


.admin-badge{
  color:var(--gold2);
  border-color:#765716;
}


.member-badge{
  color:#aaa;
  border-color:#44453d;
}


.user-active{
  color:#63d27a !important;
}


.user-disabled{
  color:#c66b48 !important;
}


/* ============================================================
   ACCOUNT
   ============================================================ */

.account-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}


.account-review-card{
  min-width:0;
}


.account-actions{
  margin-top:20px;
}


.account-page label{
  display:grid;
  gap:7px;
  color:var(--gold2);
  font-family:Oswald;
}


.account-page textarea{
  min-height:130px;
  resize:vertical;
}


/* ============================================================
   FOOTER
   ============================================================ */

footer{
  border-top:1px solid #5b4315;
  background:#0b0c0b;
  padding:30px 6%;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.4fr 1.4fr;
  gap:35px;
  position:relative;
}


.footer-brand{
  display:flex;
  align-items:center;
  gap:14px;
}


.footer-logo{
  width:68px;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:none;
}


.footer-logo img{
  display:block;
  width:68px;
  height:68px;
  object-fit:contain;
  object-position:center;
  mix-blend-mode:normal;
}


.footer-brand b,
.footer-brand small{
  display:block;
  font-family:Oswald;
}


.footer-brand small{
  color:var(--gold2);
  font-size:10px;
  letter-spacing:1px;
}


footer h4{
  color:var(--gold2);
  font-family:Oswald;
  margin:0 0 8px;
}


footer a{
  display:block;
  color:#bbb;
  font-size:13px;
  margin:5px 0;
}


footer p{
  color:#aaa;
  font-size:13px;
}


.copyright{
  grid-column:1/-1;
  text-align:center;
  border-top:1px solid #22241f;
  padding-top:15px;
  color:#777;
  font-size:12px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media(max-width:1100px){

  .brand{
    width:150px;
  }

  .brand img{
    width:72px;
    height:72px;
  }

  .topbar nav a{
    min-width:55px;
  }

  .topbar nav a span{
    display:none;
  }

  .hero{
    padding:45px 5%;
    min-height:380px;
  }

  .grid3{
    grid-template-columns:1fr 1fr;
  }

  .featured{
    grid-column:1/-1;
  }

  .lower{
    grid-template-columns:1fr 1fr;
  }

  .admin-grid{
    grid-template-columns:1fr 1fr;
  }

  footer{
    grid-template-columns:1fr 1fr 1fr;
  }

}


@media(max-width:760px){

  .topbar{
    height:auto;
    min-height:72px;
    flex-wrap:wrap;
    padding:8px 12px;
  }

  .brand{
    width:100px;
    height:60px;
  }

  .brand img{
    width:58px;
    height:58px;
  }

  .auth{
    margin-left:auto;
  }

  .auth .btn{
    padding:7px 9px;
    font-size:10px;
  }

  .topbar nav{
    order:3;
    width:100%;
    overflow:auto;
    justify-content:flex-start;
    height:48px;
  }

  .topbar nav a{
    min-width:65px;
  }

  .hero{
    display:block;
    min-height:0;
    padding:35px 7% 45px;

    background:
      linear-gradient(
        90deg,
        rgba(5,6,5,.55),
        rgba(5,6,5,.20)
      ),
      url('../img/home-banner.png') center top / 100% auto no-repeat;

    background-color:#090a09;
  }

  .hero h1{
    font-size:55px;
  }

  .hero-card{
    width:100%;
    margin-top:28px;
  }

  .grid3,
  .lower{
    grid-template-columns:1fr;
  }

  .featured{
    grid-column:auto;
  }

  .pillars{
    grid-template-columns:repeat(2,1fr);
  }

  .admin-grid{
    grid-template-columns:1fr;
  }

  .account-grid{
    grid-template-columns:1fr;
  }

  .content-card{
    grid-template-columns:1fr;
  }

  .event-card{
    grid-template-columns:1fr;
  }

  .news-image,
  .news-image img,
  .event-image,
  .event-image img{
    min-height:220px;
  }

  .user-management{
    flex-direction:column;
  }

  .user-actions{
    justify-content:flex-start;
  }

  .footer-brand{
    align-items:center;
  }

  .footer-logo,
  .footer-logo img{
    width:58px;
    height:58px;
  }

  footer{
    grid-template-columns:1fr 1fr;
  }

  .copyright{
    grid-column:1/-1;
  }

}


@media(max-width:480px){

  .brand{
    width:82px;
  }

  .brand img{
    width:52px;
    height:52px;
  }

  .auth{
    gap:5px;
  }

  .auth .btn{
    padding:7px 6px;
    font-size:9px;
  }

  .hero{
    padding:30px 6% 35px;
  }

  .hero h1{
    font-size:45px;
  }

  .btn.big{
    width:100%;
    margin:0 0 8px;
  }

  .pagehead h1{
    font-size:42px;
  }

  .featured-image{
    height:130px;
  }

  .featured-copy strong{
    font-size:22px;
  }

  .footer-logo,
  .footer-logo img{
    width:52px;
    height:52px;
  }

  footer{
    grid-template-columns:1fr;
  }

  .copyright{
    grid-column:auto;
  }

}
