
  :root{
    --container: 1180px;
    --header-h: 72px;
    --hero-h: 420px;
    --gutter: 24px;
    --radius: 12px;
    --muted: #667;
  }

  html,body{
    height:100%;
    margin:0;
    font-family:system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;
    smooth-font-sample:antialiased;
    color:rgb(165, 133, 65);
     background-color: black;
  }

  .wrap{
    max-width:var(--container);
    margin:0 auto;
    padding:0 var(--gutter);
  }

  header.site-header{
    height:var(--header-h);
    border-bottom:1px solid #eee;
    background:#fff;
  }

  header.site-header .wrap{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    height:100%;
  }

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

  .logo{
    width:160px;
    height:36px;
    background:#ddd;
    border-radius:6px;
    display:inline-block;
  }

  nav.main-nav{
    display:flex;
    gap:18px;
  }

  nav.main-nav a{
    color:var(--muted);
    text-decoration:none;
    font-weight:600;
    font-size:15px;
  }

  .hero{
    /* height:var(--hero-h); */
    display:flex;
    align-items:center;
    background:linear-gradient(180deg,#0b1220,#132435);
    color:#fff;
    overflow: hidden;
    
  }

  .hero .wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  .hero-content{
    max-width:640px;
  }

  .hero h1{
    margin:0 0 12px;
    font-size:40px;
    line-height:1.04;
  }

  .hero p{
    margin:0 0 20px;
    color:rgba(255,255,255,0.85);
  }

  .cta{
    display:inline-block;
    padding:12px 18px;
    border-radius:8px;
    background:#fff;
    color:#0b1220;
    font-weight:700;
    text-decoration:none;
  }

  main{
    padding:48px 0;
  }

  .columns{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:32px;
  }

  .cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

  .card{
    background:#fff;
    border-radius:10px;
    padding:18px;
    box-shadow:0 6px 18px rgba(18,24,28,0.04);
    border:1px solid #f0f0f0;
  }

  .card .thumb{
    height:140px;
    border-radius:8px;
    background:#efefef;
    margin-bottom:12px;
  }

  .card h3{
    margin:0 0 8px;
    font-size:18px;
  }

  .card p{
    margin:0;
    color:var(--muted);
    font-size:14px;
  }

  .widget{
    background:#fff;
    padding:16px;
    border-radius:10px;
    border:1px solid #f2f2f2;
    margin-top: 50px;
  }

  .subscribe input{
    width:100%;
    padding:10px;
    margin-top:8px;
    border-radius:8px;
    border:1px solid #ddd;
  }

  .subscribe button{
    margin-top:10px;
    width:100%;
    padding:10px;
    border-radius:8px;
    border:0;
    background:#0b1220;
    color:#fff;
    font-weight:700;
  }

  footer{
    border-top:1px solid #eee;
    padding:28px 0;
    color:var(--muted);
    font-size:14px;
    margin-top: 50px;
  }

  @media (max-width:980px){
    :root{--container:920px}
    .cards{grid-template-columns:1fr}
    .columns{grid-template-columns:1fr}
    .hero h1{font-size:32px}
  }

  @media (max-width:560px){
    header.site-header{padding:0 12px; display: none;}
    /* nav.main-nav{display:none} */
    .hero{padding:20px 0}
    .logo{width:120px}
  }

  /* ---- ADDED: mobile menu CSS (kept separate so original rules unchanged) ---- */

  @media (max-width:560px){
    /* hide desktop nav on small screens (this does not change existing commented line) */
    nav.main-nav{display:none !important;}
  }

  .menu-toggle{
    display:none;
    position:fixed;
    top:12px;
    right:12px;
    z-index:999999;
    width:44px;
    height:40px;
    border:none;
    background:#0b1220;
    border-radius:8px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    padding:6px;
    box-shadow:0 6px 18px rgba(11,18,32,0.18);
  }
  .menu-toggle .bar{
    display:block;
    width:22px;
    height:2.5px;
    background:#fff;
    margin:3px 0;
  }

  .mobile-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.35);
    z-index:999990;
    pointer-events:none;
  }
  .mobile-overlay.visible{
    display:block;
    pointer-events:auto;
  }

  .mobile-nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    max-height:0;
    overflow:hidden;
    background:#000;
    display:flex;
    flex-direction:column;
    padding:0 18px;
    border-bottom:1px solid #eee;
    box-shadow:0 8px 30px rgba(11,18,32,0.2);
    z-index:999995;
    transition:max-height .35s cubic-bezier(.2,.9,.2,1), padding .25s ease;
  }
  .mobile-nav.open{
    max-height:60vh;
    padding-top:64px;
    padding-bottom:18px;
  }
  .mobile-nav .link{
    display:block;
    padding:12px 6px;
    font-size:18px;
    font-weight:700;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
  }
  .mobile-nav .link:hover{ background:rgba(11,18,32,0.03); }

  .bandlogo {
  height: 100%;
  overflow: hidden;
}

.bandlogo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.text {
  margin-top: 50px;;
}


