    /* 1) sensible defaults */
    *, *::before, *::after { box-sizing: border-box; }
    body { margin: 0; font-family: system-ui, Arial, sans-serif; line-height: 1.5; }

    /* 2) responsive container */
    .site-container{
      width: min(1100px, 100% - 2rem); /* max 1100px, otherwise full minus padding */
      margin-inline: auto;
      padding-block: 1rem;
    }

    /* 3) responsive header/nav */


      

    /* 4) responsive main layout */
    .grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 1rem;
      align-items: start;
    }

    .card {
      border: 1px solid #e6e6e6;
      border-radius: 14px;
      padding: 1rem;
      background: #ffffff
    }

    /* 5) responsive media */
    img, video {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 12px;
    }

    /* 6) breakpoint: stack columns on small screens */
    @media (max-width: 768px) {
      .grid { grid-template-columns: 1fr; }
      .nav { flex-direction: column; align-items: flex-start; }
    }
  

        :root{
      --bg:#0b1020;
      --panel:#111a33;
      --btn:#2c3a7a;
      --btnHover:#3b4aa0;
      --text:#ffffff;
      --ring:rgba(255,255,255,.15);
      --radius:14px;
    }

    body{
      margin:0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background:var(--bg);
      color:var(--text);
      background-color: #f4f4f4; 
    }

    .nav{
      background:rgb(0, 0, 0);
      backdrop-filter: blur(8px);
      border-bottom:1px solid rgba(255,255,255,.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav__inner{
      margin: 0 auto; 
      padding: 12px 16px;
      display: flex;
      align-items:center;
      justify-content:space-between;
      gap:6px;
      background-color: rgb(0, 0, 0);
    }

    .nav a { text-decoration: none; color: #111; font-weight: 600; }
    
    .brand{
      font-weight:700;
      letter-spacing:.4px;
      user-select:none;
      white-space:nowrap;
    }

    /* Desktop buttons */
.menu{
  display: flex;
  gap: 20px;
  flex: 1;                 /* fills space to the right of brand */
  justify-content: space-around;
}


    .menu a{
      text-decoration:none;
      color:var(--text);
      background:var(--btn);
      padding:6px 6px;
      border-radius: var(--radius);
      border:1px solid rgba(255,255,255,.12);
      box-shadow: 0 6px 14px rgba(0,0,0,.25);
      font-weight:600;
      transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
      text-align: center;
      flex: 1 1 0;              /* equal-width buttons */
      min-width: 120px;         /* prevents buttons getting too tiny */
      width: auto;              /* IMPORTANT: remove width:100% behavior */
      text-align: center;
    }

    .menu a:hover{
      background:var(--btnHover);
      transform: translateY(-1px);
      box-shadow: 0 10px 18px rgba(0,0,0,.35);
    }

    .menu a:focus-visible{
      outline: 3px solid var(--ring);
      outline-offset: 2px;
    }

    /* Mobile dropdown */
    .dropdown{
      display:none;
      position:relative;
    }

    .dropdown__btn{
      appearance:none;
      border:1px solid rgba(255,255,255,.18);
      background:var(--btn);
      color:var(--text);
      border-radius: var(--radius);
      padding:10px 14px;
      font-weight:700;
      cursor:pointer;
      display:flex;
      align-items:center;
      gap:10px;
      box-shadow: 0 6px 14px rgba(0,0,0,.25);
    }

    .chev{
      width: 10px;
      height: 10px;
      border-right: 2px solid rgba(255,255,255,.9);
      border-bottom: 2px solid rgba(255,255,255,.9);
      transform: rotate(45deg);
      margin-top:-2px;
    }

    .dropdown__panel{
      position:absolute;
      right:0;
      top: calc(100% + 10px);
      min-width: 220px;
      background: var(--panel);
      border:1px solid rgba(255,255,255,.12);
      border-radius: 16px;
      padding:10px;
      box-shadow: 0 18px 30px rgba(0,0,0,.45);
      display:none;
    }

    .dropdown__panel a{
      display:block;
      text-decoration:none;
      color:var(--text);
      padding:10px 12px;
      border-radius: 12px;
      font-weight:600;
      background: transparent;
      border:1px solid transparent;
    }

    .dropdown__panel a:hover{
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.10);
    }

    .dropdown[aria-expanded="true"] .dropdown__panel{
      display:block;
    }

    /* Breakpoint: collapse buttons into dropdown */
    @media (max-width: 1024px){
      .menu{ display:none; }
      .dropdown{ display:block; }
      .menu a:hover { box-shadow: 0 10px 18px rgba(0,0,0,.35), 0 0 26px rgba(140,180,255,.55); }
    }

/* top logo */
    .logo-wrapper {
      position: relative;
      width: 100%;
      min-height: 30vh;
      display: grid;
      place-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      justify-content: center;
      padding-top: 20px; /* distance from top */
        /* Layered backgrounds: lightning on top, storm behind */
      background-image:
        url("images/lightning_bg_banner.png");
      background-size:
        cover;
      background-position:
        center;
      background-repeat:
        no-repeat;
    }

    .logo {
      width: 90%;
      max-width: 220px; /* desktop size control */
    }

    .logo img {
      width: 100%;
      height: auto;
      display: block;
    }

.hours-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
  gap: 8px;
  text-align: center;
}

.footer{
  background: #000;
  color: #fff;
  padding: 18px 0;
}

.footer-inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* align each zone */
.footer-left{ justify-self: start; }
.footer-center{ justify-self: center; text-align: center; }
.footer-right{ justify-self: end; }

/* links */
.footer a{
  position: relative;
  overflow: hidden;
  padding: 4px 2px;
  isolation: isolate;
}

/* lightning streak */
.footer a::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    linear-gradient(120deg,
      transparent 40%,
      rgba(180,210,255,.9) 50%,
      transparent 60%);
  transform: translateX(-120%);
  opacity: 0;
  mix-blend-mode: screen;
}

/* --- Mobile footer layout --- */
@media (max-width: 768px){
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right{
    justify-self: center;
  }
}

@media (max-width: 768px){
  .hours-grid{
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px){
  .hours-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .mobile-underline{
    text-decoration: underline;
    text-underline-offset: 5px;
  }
}

/* TEAM GRID */
.team-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  text-align: center;
}

/* INDIVIDUAL CARD */
.team-card h4{
  margin-bottom: 8px;
  font-weight: 700;
  background-color: #000;
}

.team-card img{
  width: clamp(110px, 12vw, 170px);
  height: clamp(110px, 12vw, 170px);
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 10px;
}

.team-card p{
  margin: 0;
  font-weight: 500;
  color: #ffffff;
  background-color: #000;
}
@media (max-width: 1024px){
  .team-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px){
  .team-grid{
    grid-template-columns: 1fr;
  }
}

.team-card{
  padding: 12px;
  border-radius: 14px; 
}

.team-card:hover img{
  box-shadow: 0 0 18px rgba(140,180,255,.45);
}

@media (min-width: 1200px){
  .team-card{
    background-color:#687cf1; 
;
  }
}

h5 {
  line-height: 1.6;   /* try 1.5 – 1.9 */
}




