:root{
  --deep-blue: #0A3D91;
  --orange: #F7941E;
  --aqua: #00C6D7;
  --white: #ffffff;
  --max-width: 1100px;
}
*{box-sizing:border-box}
body{
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  margin:0;color:#222;line-height:1.5;background:#f7f8fb;
}
.container{max-width:var(--max-width);margin:0 auto;padding:24px}
.site-header{background:#fff;box-shadow:0 2px 6px rgba(0,0,0,0.06);position:sticky;top:0;z-index:30}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 24px}
.brand{font-family:'Montserrat',sans-serif;font-weight:700;color:var(--deep-blue);text-decoration:none;font-size:1.25rem}
.main-nav{display:flex;gap:14px;align-items:center}
.main-nav a{color:#333;text-decoration:none;padding:6px 8px;border-radius:6px}
.btn-primary{background:var(--orange);color:var(--white);padding:10px 16px;border-radius:10px;border:none;text-decoration:none;font-weight:600}
.btn-secondary{background:transparent;color:var(--deep-blue);padding:8px 14px;border-radius:10px;border:2px solid rgba(10,61,145,0.08);text-decoration:none}
.nav-toggle{display:none;background:none;border:0;font-size:1.25rem;padding:8px}

/* HERO */
.hero{height:60vh;min-height:380px;background:url('assets/Nampa-Lanes.jpg') center/cover no-repeat;position:relative;display:flex;align-items:center;color:var(--white)}
.hero .overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(10,61,145,0.45), rgba(0,0,0,0.35))}
.hero-content{position:relative;z-index:2;padding:40px}
.hero h1{font-family:'Montserrat',sans-serif;font-size:2.25rem;margin:0 0 12px}
.lead{font-size:1.05rem;margin-bottom:18px}

/* HOURS - OPEN BOWLNG SECTION */
/* ONE BIG CONTAINER */
.hours-box {
  background: #fff;
  padding: 10px 12px;
  border-radius: 10px;      /* slightly smaller looks better when compact */
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}


/* paragraph styling */
p {
  line-height: 1.2;
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}

/* Style only the day names */
.hours-row .day {
  font-weight: 500;      /* optional: makes them bold */
  font-size: 1.15rem;    /* adjust size */
  color: var(--deep-blue);  /* or any color: #ff0000, #333, etc. */
}

/* Individual rows now no longer have backgrounds */
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  line-height: 1.15;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

/* Remove border from last row */
.hours-row:last-child {
  border-bottom: none;
}

/* Tuesday special row */
.hours-row.with-sub {
  flex-direction: column;
}

.hours-row.with-sub .row-main {
  display: flex;
  justify-content: space-between;
}

.hours-row.with-sub .subtime {
  text-align: right;
  margin-top: 4px;
  font-size: 0.95rem;
  /* color: #555; */
}

/* FEATURES */
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:-40px}
.feature{background:#fff;padding:20px;border-radius:12px;box-shadow:0 6px 18px rgba(0,0,0,0.06);text-align:center}
.feature .icon{font-size:34px;margin-bottom:8px}
.feature h3{color:var(--deep-blue)}
.link{display:inline-block;margin-top:10px;color:var(--deep-blue);text-decoration:none}

/* ABOUT */
.about{display:flex;gap:24px;align-items:center;padding:36px 24px}
.about-left{flex:1}
.about-right{flex:1}
.about-right img{max-width:100%;border-radius:12px;display:block}

/* PRICING */
.pricing{padding:20px 10px;background:transparent}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.pricing-grid-two{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.pricing-card{background:#fff;padding:8px;border-radius:10px;box-shadow:0 4px 12px rgba(0,0,0,0.05)}

.pricing-image {
  grid-column: span 2; /* Makes it stretch across two grid columns */
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
}

.pricing-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}
/* BOOKING */
.book{background:linear-gradient(90deg, #fff, rgba(0,198,215,0.05));padding:28px;border-radius:12px;text-align:center;margin:24px}

/* REVIEWS */
.reviews{padding:24px}
.reviews blockquote{background:#fff;padding:18px;border-left:6px solid var(--orange);border-radius:8px}

/* FOOTER */
.site-footer{background:#0A3D91;color:#fff;padding:36px 24px;margin-top:28px}
.footer-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:18px}
.site-footer a{color:#fff;text-decoration:none}
.social a{display:inline-block;margin-right:8px;padding:6px;border-radius:6px;background:rgba(255,255,255,0.08)}

/* RESPONSIVE */
@media (max-width:900px){
  .features{grid-template-columns:1fr;gap:12px;margin-top:12px}
  .pricing-grid{grid-template-columns:1fr}
  .about{flex-direction:column}
  .nav-toggle{display:block}
  .main-nav{position:fixed;right:18px;top:64px;background:#fff;padding:12px;border-radius:10px;box-shadow:0 8px 24px rgba(0,0,0,0.08);flex-direction:column;display:none;max-width:calc(100vw - 36px)}
  .main-nav.show{display:flex}
}

/* EVENTS SNAPSHOT / EVENTS PAGE */
.events-snapshot h2,
.events-page h2 {
  margin-bottom: 8px;
}

.events-note {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.25;
}

.events-season {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.25;
  opacity: 0.9;
}

.events-box {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.event-item {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.event-item:last-child { border-bottom: none; }

.event-left { flex: 1; }

.event-title {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--deep-blue);
}

.event-blurb {
  margin: 0;
  line-height: 1.25;
}

.event-right {
  text-align: right;
  white-space: nowrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Today highlight */
.event-item.today {
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
  background: rgba(0,0,0,0.03);
}

/* Standardized impact tags */
.impact-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.impact-none {
  color: #b00020;
  background: rgba(176, 0, 32, 0.10);
  border: 1px solid rgba(176, 0, 32, 0.25);
}

.impact-limited {
  color: #7a5b00;
  background: rgba(247, 148, 30, 0.18);
  border: 1px solid rgba(247, 148, 30, 0.35);
}

/* Yellow banner only (summary) */
.impact-banner {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.impact-banner.limited {
  background: rgba(247, 148, 30, 0.16);
  border-left: 6px solid var(--orange);
}

.impact-banner.limited h3 {
  margin: 0 0 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #7a5b00;
}

.impact-banner.limited p {
  margin: 0;
  line-height: 1.25;
}

@media (max-width:900px){
  /* keep the mobile menu within the viewport */
  .main-nav{max-width: calc(100vw - 36px);}
}

/* EVENTS SNAPSHOT / EVENTS PAGE */
.events-snapshot h2,
.events-page h2 {
  margin-bottom: 8px;
}

.events-note {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.25;
}

.events-season {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.25;
  opacity: 0.9;
}

.events-box {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.event-item {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.event-item:last-child {
  border-bottom: none;
}

.event-left {
  flex: 1;
}

.event-title {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--deep-blue);
}

.event-blurb {
  margin: 0;
  line-height: 1.25;
}

.event-right {
  text-align: right;
  white-space: nowrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

.event-today {
  background: rgba(0, 198, 215, 0.08);
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

/* Impact tags */
.impact-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.impact-none {
  color: #b00020;
  background: rgba(176, 0, 32, 0.10);
  border: 1px solid rgba(176, 0, 32, 0.25);
}

.impact-limited {
  color: #7a5b00;
  background: rgba(247, 148, 30, 0.18);
  border: 1px solid rgba(247, 148, 30, 0.35);
}

/* Yellow heads-up banner (summary only) */
.impact-banner {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.impact-banner.limited {
  background: rgba(247, 148, 30, 0.16);
  border-left: 6px solid var(--orange);
}

.impact-banner.limited h3 {
  margin: 0 0 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #7a5b00;
}

.impact-banner.limited p {
  margin: 0;
  line-height: 1.25;
}

.events-more {
  text-align: center;
  margin-top: 10px;
}

/* EVENTS SNAPSHOT / EVENTS PAGE */
.events-snapshot h2,
.events-page h2 {
  margin-bottom: 8px;
}

.events-note {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.25;
}

.events-season {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.25;
  opacity: 0.9;
}

.events-box {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.event-item {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.event-item:last-child {
  border-bottom: none;
}

.event-item.event-today {
  background: rgba(0, 198, 215, 0.07);
  border-radius: 8px;
  padding-left: 10px;
  padding-right: 10px;
}

.event-left {
  flex: 1;
}

.event-title {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--deep-blue);
}

.event-blurb {
  margin: 0;
  line-height: 1.25;
}

.event-right {
  text-align: right;
  white-space: nowrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Standardized impact labels */
.impact-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.impact-none {
  color: #b00020;
  background: rgba(176, 0, 32, 0.10);
  border: 1px solid rgba(176, 0, 32, 0.25);
}

.impact-limited {
  color: #7a5b00;
  background: rgba(247, 148, 30, 0.18);
  border: 1px solid rgba(247, 148, 30, 0.35);
}

/* Yellow banner only (summary) */
.impact-banner {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.impact-banner.limited {
  background: rgba(247, 148, 30, 0.16);
  border-left: 6px solid var(--orange);
}

.impact-banner.limited h3 {
  margin: 0 0 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #7a5b00;
}

.impact-banner.limited p {
  margin: 0;
  line-height: 1.25;
}

/* Mobile: keep the popout nav inside screen */
@media (max-width:900px){
  .main-nav{max-width:calc(100vw - 36px)}
}

/* EVENTS SNAPSHOT / EVENTS PAGE */
.events-snapshot h2,
.events-page h2 {
  margin-bottom: 8px;
}

.events-note {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.25;
}

.events-season {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.25;
  opacity: 0.9;
}

.events-box {
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.event-item {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.event-item:last-child {
  border-bottom: none;
}

.event-left {
  flex: 1;
}

.event-title {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--deep-blue);
}

.event-blurb {
  margin: 0;
  line-height: 1.25;
}

.event-right {
  text-align: right;
  white-space: nowrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Today highlight */
.event-item.today {
  background: rgba(0, 198, 215, 0.06);
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

/* Standardized impact labels */
.impact-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.impact-none {
  color: #b00020;
  background: rgba(176, 0, 32, 0.10);
  border: 1px solid rgba(176, 0, 32, 0.25);
}

.impact-limited {
  color: #7a5b00;
  background: rgba(247, 148, 30, 0.18);
  border: 1px solid rgba(247, 148, 30, 0.35);
}

/* Weekly banner (always yellow) */
.impact-banner {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.impact-banner.limited {
  background: rgba(247, 148, 30, 0.16);
  border-left: 6px solid var(--orange);
}

.impact-banner.limited h3 {
  margin: 0 0 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #7a5b00;
}

.impact-banner.limited p {
  margin: 0;
  line-height: 1.25;
}

.events-more {
  text-align: center;
  margin-top: 10px;
}
