:root { --max: 1100px; }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, sans-serif; color: #111; overflow-x: hidden; }
a { color: #002147; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 1rem 1rem; }
.site { background: linear-gradient(180deg, #f7f7f7, #fff); border-bottom: 1px solid #eee; }
.nav { max-width: var(--max); margin: 0 auto; display: flex; gap: 1rem; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; }
.brand { font-weight: 700; letter-spacing: .3px; }
.brand a { text-decoration: none; }
.menu { display: none; font-size: 1.25rem; background: none; border: 1px solid #ddd; border-radius: .5rem; padding: .25rem .5rem; cursor: pointer; }
.links { display: flex; gap: 1rem; align-items: center; }
.links a { text-decoration: none; opacity: .85; }
.links a:hover { opacity: 1; text-decoration: underline; }

/* Secondary navigation */
.secondary-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  display: none;
}
.secondary-nav.active {
  display: block;
}
.secondary-nav .nav-container {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
}
.secondary-nav .nav-item {
  padding: 1rem 0;
  text-decoration: none;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.secondary-nav .nav-item:hover,
.secondary-nav .nav-item.active {
  color: #222;
  border-bottom-color: #e60000;
}

.hero { max-width: var(--max); margin: 0 auto; padding: 4rem 1rem 3rem; text-align: center; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 .5rem; }
.hero p { color: #444; margin: 0 0 1rem; }
.cta { display: inline-block; padding: .75rem 1rem; border-radius: .75rem; border: 1px solid #222; text-decoration: none; }

.grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); max-width: var(--max); margin: 0 auto; padding: 3rem 1rem; }
.grid article { border: 1px solid #eee; border-radius: 1rem; padding: 1rem; background: #fff; }

.foot { border-top: 1px solid #eee; color: #555; }

.note { color: #666; font-size: .95rem; }

/* Responsive images */
@media (max-width: 800px) {
  img.full {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.center {
  text-align: center;
}

/* Mobile tweaks */
@media (max-width: 800px) {
  .grid { grid-template-columns: 1fr; }
  .menu { display: inline-block; }
  .links { display: none; }
  body.open .links { 
    display: flex; 
    flex-direction: column; 
    position: absolute; 
    right: 1rem; 
    top: 3.25rem; 
    background: #fff; 
    border: 1px solid #eee; 
    padding: .75rem; 
    border-radius: .5rem; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
  }
  body.open .links a {
    padding: .5rem 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }
  body.open .links a:last-child {
    border-bottom: none;
  }
  .secondary-nav .nav-container {
    flex-direction: column;
    gap: 0;
  }
  .secondary-nav .nav-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .secondary-nav .nav-item:last-child {
    border-bottom: none;
  }
}


.band_logo {
  height: 24px;
  vertical-align:middle;
}