:root{
  --green:#064d35;
  --brown:#6b2d0c;
  --gold:#c69214;
  --ink:#151515;
  --cream:#f5f3ee;
  --white:#ffffff;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--cream);
  color:var(--ink);
}

img{max-width:100%}

a{color:inherit}

.topbar{
  background:var(--brown);
  color:#fff;
  text-align:center;
  padding:8px 15px;
  font-size:15px;
  letter-spacing:1.5px;
}

.header{
  background:#fff;
  height:228px;
  padding:4px 3.5%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:20px;
}

.logo{
  width:620px;
  height:218px;
  object-fit:contain;
  object-position:left center;
  display:block;
}

.socials{
  display:flex;
  gap:9px;
  align-items:center;
  flex-shrink:0;
}

.social{
  width:38px;
  height:38px;
  border-radius:5px;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-weight:800;
  color:#fff;
  font-size:15px;
}

.youtube{background:#d80000}
.x{background:#111}

.nav{
  background:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:4px;
  padding:3px 3% 7px;
  border-top:1px solid #eee;
  border-bottom:4px solid var(--gold);
  flex-wrap:wrap;
}

.nav a{
  text-decoration:none;
  font-weight:700;
  font-size:16px;
  padding:11px 17px;
  border-radius:4px;
  white-space:nowrap;
}

.nav a:hover,.nav a.active{
  background:var(--green);
  color:#fff;
}

/* Main hero is intentionally shorter so the first screen shows more of the homepage. */
.hero{
  position:relative;
  min-height:460px;
  height:clamp(360px, 46vh, 520px);
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#111;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:brightness(.84);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,.58) 0%,
    rgba(0,0,0,.38) 42%,
    rgba(0,0,0,.10) 78%,
    rgba(0,0,0,.06) 100%
  );
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(1180px,88%);
  margin:0 auto;
  color:#fff;
}

.hero h1{
  margin:0;
  font-size:clamp(36px,4.8vw,70px);
  line-height:1.02;
  letter-spacing:.3px;
  text-transform:uppercase;
}

.hero h1 span{color:#e0ad2f}

.hero p{
  margin:17px 0 24px;
  max-width:650px;
  font-size:clamp(18px,1.8vw,24px);
  line-height:1.4;
}

.cta{
  display:inline-block;
  background:#e0ad2f;
  color:#111;
  text-decoration:none;
  font-weight:800;
  font-size:18px;
  padding:14px 26px;
  border-radius:5px;
  border:1px solid #a77b0b;
}

.page{
  width:min(1180px,92%);
  margin:36px auto 54px;
}

.page-title{
  font-size:clamp(32px,4vw,42px);
  margin:0 0 7px;
  color:var(--green);
}

.page-subtitle{
  color:#666;
  font-size:18px;
  margin:0 0 25px;
}

.picks-frame{
  background:#fff;
  border:1px solid #ddd;
  padding:12px;
  box-shadow:0 7px 22px rgba(0,0,0,.07);
}

.picks-image{
  width:100%;
  height:auto;
  display:block;
}

.back-link{
  display:inline-block;
  margin-bottom:18px;
  text-decoration:none;
  color:var(--green);
  font-weight:700;
}

.track-menu{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 26px;
}

.track-button{
  display:inline-block;
  text-decoration:none;
  background:#fff;
  color:var(--green);
  border:2px solid var(--green);
  border-radius:5px;
  padding:12px 18px;
  font-weight:800;
}

.track-button:hover,.track-button.active-track{
  background:var(--green);
  color:#fff;
}

.pick-section{
  scroll-margin-top:20px;
  margin-top:8px;
}

.pick-section h2{
  margin:0 0 14px;
  font-size:28px;
  color:var(--brown);
  border-left:6px solid var(--gold);
  padding-left:12px;
}

.no-picks{
  background:#fff;
  border:1px solid #ddd;
  border-left:6px solid #999;
  border-radius:5px;
  padding:18px 20px;
  color:#666;
  font-size:17px;
  line-height:1.5;
}

.past-picks-link{
  display:inline-block;
  margin:0 0 28px;
  background:var(--brown);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  padding:12px 18px;
  border-radius:5px;
}

.past-picks-link:hover{
  background:var(--green);
}

.track-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:15px;
  margin-top:25px;
}

.track-card{
  display:block;
  background:#fff;
  border:1px solid #ddd;
  border-left:6px solid var(--green);
  border-radius:5px;
  padding:18px 20px;
  text-decoration:none;
  color:var(--ink);
  font-size:19px;
  font-weight:800;
  box-shadow:0 4px 12px rgba(0,0,0,.04);
}

.track-card:hover{
  background:#f7efe8;
  border-left-color:var(--brown);
}

.footer{
  background:var(--green);
  color:#fff;
  text-align:center;
  padding:24px 16px;
  border-top:5px solid var(--gold);
}

.footer .site{
  font-size:20px;
  letter-spacing:3px;
  margin-bottom:7px;
}

.footer .tag{
  font-size:13px;
  letter-spacing:1.7px;
}

/* Tablet */
@media (max-width:900px){
  .header{
    height:175px;
    padding:4px 3%;
  }

  .logo{
    width:470px;
    height:165px;
  }

  .nav a{
    font-size:15px;
    padding:10px 13px;
  }

  .hero{
    min-height:390px;
    height:clamp(330px,44vh,450px);
  }

  .hero-content{
    width:90%;
  }

  .hero h1{
    font-size:clamp(34px,5.2vw,54px);
  }

  .hero p{
    font-size:19px;
  }
}

/* Phone */
@media (max-width:600px){
  .topbar{
    padding:6px 8px;
    font-size:10px;
    letter-spacing:1px;
  }

  .header{
    height:145px;
    padding:5px 10px;
    gap:10px;
  }

  .logo{
    width:390px;
    height:130px;
    object-position:left center;
  }

  .socials{
    gap:6px;
  }

  .social{
    width:32px;
    height:32px;
    font-size:13px;
  }

  .nav{
    justify-content:flex-start;
    gap:2px;
    padding:6px 8px 7px;
    overflow-x:auto;
    flex-wrap:nowrap;
    -webkit-overflow-scrolling:touch;
  }

  .nav a{
    font-size:15px;
    padding:10px 12px;
    flex:0 0 auto;
  }

  .hero{
    min-height:300px;
    height:340px;
  }

  .hero-bg{
    object-position:62% center;
  }

  .hero-overlay{
    background:linear-gradient(
      90deg,
      rgba(0,0,0,.76) 0%,
      rgba(0,0,0,.52) 58%,
      rgba(0,0,0,.20) 100%
    );
  }

  .hero-content{
    width:90%;
  }

  .hero h1{
    font-size:34px;
    max-width:95%;
  }

  .hero p{
    font-size:17px;
    margin:14px 0 20px;
  }

  .cta{
    font-size:16px;
    padding:12px 20px;
  }

  .page{
    width:94%;
    margin:28px auto 42px;
  }

  .page-subtitle{
    font-size:16px;
  }

  .no-picks{
  background:#fff;
  border:1px solid #ddd;
  border-left:6px solid #999;
  border-radius:5px;
  padding:18px 20px;
  color:#666;
  font-size:17px;
  line-height:1.5;
}

.past-picks-link{
  display:inline-block;
  margin:0 0 28px;
  background:var(--brown);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  padding:12px 18px;
  border-radius:5px;
}

.past-picks-link:hover{
  background:var(--green);
}

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

  .track-button{
    width:100%;
    text-align:center;
  }

  .pick-section h2{
    font-size:24px;
  }

  .footer{
    padding:20px 12px;
  }

  .footer .site{
    font-size:16px;
    letter-spacing:2px;
  }
}

.past-picks-link{
  display:inline-block;
  margin:0 0 26px;
  padding:12px 18px;
  border-radius:5px;
  background:var(--brown);
  color:#fff;
  text-decoration:none;
  font-weight:800;
}
.past-picks-link:hover{background:var(--green)}
.past-list{display:grid;gap:14px}
.past-card{
  display:block;
  background:#fff;
  border:1px solid #ddd;
  border-left:6px solid var(--gold);
  border-radius:5px;
  padding:18px 20px;
  text-decoration:none;
  color:var(--ink);
}
.past-card:hover{border-left-color:var(--green);background:#faf8f3}
.past-card .date{
  color:var(--brown);
  font-size:14px;
  font-weight:800;
  margin-bottom:5px;
  text-transform:uppercase;
  letter-spacing:.7px;
}
.past-card .track{font-size:20px;font-weight:800}

.nav .socials{margin-left:14px;}
.nav .social{width:36px;height:36px;}

/* V17 mobile layout: keeps the desktop design unchanged while fitting the full site cleanly on phones. */
@media (max-width:600px){
  html,body{width:100%;max-width:100%;overflow-x:hidden;}

  .header{
    height:145px;
    padding:5px 10px;
    justify-content:center;
    align-items:center;
  }

  .header > a{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    max-width:100%;
  }

  .logo{
    width:100%;
    max-width:300px;
    height:auto;
    max-height:130px;
    object-fit:contain;
    object-position:center center;
  }

  .nav{
    justify-content:center;
    align-items:center;
    gap:3px;
    padding:6px 6px 7px;
    overflow:visible;
    flex-wrap:wrap;
  }

  .nav a{
    font-size:13px;
    padding:9px 10px;
    flex:0 0 auto;
  }

  .nav .socials{
    width:100%;
    justify-content:center;
    margin:2px 0 0 !important;
  }

  .hero{
    min-height:360px;
    height:360px;
  }

  .hero-bg{
    object-position:60% center;
  }

  .hero-content{
    width:88%;
  }

  .hero h1{
    font-size:30px;
    line-height:1.05;
    max-width:100%;
  }

  .hero p{
    font-size:16px;
    line-height:1.35;
    margin:13px 0 20px;
    max-width:100%;
  }

  .cta{
    font-size:16px;
    padding:12px 20px;
  }
}
