
:root{
  --brand:#b30000;
  --bg:#f6f8fc;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto;
  background:var(--bg);
}

/* HEADER */
header{
  background:var(--brand);
  color:#fff;
  position:sticky;
  top:0;
  z-index:1000;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}

.top-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand a{
  color:#fff;
  text-decoration:none;
  font-size:22px;
  font-weight:700;
}

/* desktop nav */
nav.desktop{
  display:flex;
  gap:14px;
}

nav.desktop a{
  color:#fff;
  text-decoration:none;
  padding:8px 10px;
}

nav.desktop a:hover{
  background:rgba(255,255,255,.2);
}

/* hamburger */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}


/* RIGHT DRAWER */
.drawer{
  position:fixed;
  top:0;
  right:-270px;
  width:270px;
  height:100%;
  background:#fff;
  transition:.3s;
  z-index:2000;
  box-shadow:-3px 0 18px rgba(0,0,0,.25);
}

.drawer.show{ right:0; }

.drawer-header{
  text-align:right;
  padding:12px;
}

.close-btn{
  font-size:22px;
  cursor:pointer;
}

.drawer a{
  display:block;
  padding:14px 18px;
  color:#111;
  text-decoration:none;
  border-bottom:1px solid #eee;
}

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  pointer-events:none;
  transition:.3s;
}

.overlay.show{
  opacity:1;
  pointer-events:auto;
}

@media(max-width:768px){
  nav.desktop{ display:none; }
  .menu-toggle{ display:block; }
}

main.container{ padding:20px 15px; }


/* =================================================
   FOOTER.CSS
   Clean • Fast • Responsive • 2 columns always
================================================= */

.site-footer{
  background:#222;
  color:#ccc;
  margin-top:40px;
  font-size:14px;
}

/* container */
.site-footer .container{
  max-width:1100px;
  margin:auto;
  padding:30px 15px;
}

/* ======================
   TOP LAYOUT
====================== */

.site-footer .top{
  display:flex;
  justify-content:space-between;
  gap:40px;
  flex-wrap:wrap;
}

/* headings */
.site-footer h3,
.site-footer h4{
  color:#fff;
  margin-bottom:10px;
  font-weight:600;
}

/* description text */
.site-footer p{
  max-width:420px;
  line-height:1.6;
  margin:0;
}

/* ======================
   QUICK LINKS GRID
   👉 2 column always
====================== */

.site-footer ul{
  list-style:none;
  padding:0;
  margin:0;

  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:6px 30px;
}

.site-footer li{
  margin:4px 0;
}

/* links */
.site-footer a{
  color:#9db7ff;
  text-decoration:none;
  transition:.2s;
}

.site-footer a:hover{
  color:#fff;
  text-decoration:underline;
}

/* divider */
.site-footer hr{
  border:0;
  border-top:1px solid #444;
  margin:25px 0;
}

/* bottom text */
.site-footer .bottom{
  text-align:center;
  font-size:13px;
  color:#aaa;
  line-height:1.6;
}

/* ======================
   MOBILE
====================== */

@media(max-width:600px){

  /* stack sections but keep 2-column links */
  .site-footer .top{
    flex-direction:column;
  }

}


