/* Gordon's Alive - Shows page (v7-aligned)
   Notes:
   - Nicepage base styling comes from nicepage.css
   - Shared GA bits (gigs list styling, footer tidy-up, cookie banner) are included here
     so Shows matches Home/About/Contact styling.
*/

/* Hero background */
.u-section-1{
  background-image: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.85)), url("images/160cd27c-6888-49f8-8738-ad330eaec381.JPG");
  background-position: 50% 50%;
}

.u-section-1 .u-sheet-1{
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.u-section-1 .u-group-1{
  width: 780px;
  min-height: 240px;
  margin: 0 auto 60px;
  background-color: rgba(0,0,0,0.60);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
}

.u-section-1 .u-container-layout-1{
  padding: 26px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.u-section-1 .u-text-1{
  font-size: 2.8rem;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.65);
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  align-self: stretch !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.u-section-1 .u-text-2{
  font-size: 1.15rem;
  margin: 10px 0 0;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}

/* Hero CTAs (match other pages) */
.u-section-1 .u-btns-1{
  margin-top: 18px;
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

.u-section-1 .u-btn-1,
.u-section-1 .u-btn-2{
  margin: 10px 8px 0;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.u-section-1 .u-btn-2{
  background: transparent;
  color: #ffffff;
}


/* Shows hero CTA centring fix (tablet + mobile portrait)
   Some Nicepage defaults can drop the CTA container out of flex at smaller breakpoints,
   and .u-btn defaults to display:table (block-like) which then left-justifies.
   These overrides force centring reliably. */
#ga-shows-hero .u-btns-1{
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#ga-shows-hero .u-btns-1 .u-btn-1,
#ga-shows-hero .u-btns-1 .u-btn-2{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
}

/* Section 2 - gigs */
.u-section-2 .u-sheet-1{
  min-height: 600px;
  padding-top: 40px;
  padding-bottom: 70px;
}

.u-section-2 .u-text-1{
  font-size: 2.0rem;
  margin: 0 auto;
}

.u-section-2 .u-text-2{
  width: min(820px, 100%);
  margin: 14px auto 0;
  opacity: 0.92;
}

.u-section-2 .u-group-1{
  width: 900px;
  min-height: 220px;
  margin: 24px auto 0;
  background-color: rgba(255,255,255,0.06);
  border-radius: 18px;
}

.u-section-2 .u-container-layout-1{
  padding: 22px 26px;
}

.u-section-2 .u-text-3{
  margin: 14px auto 0;
  opacity: 0.92;
}

/* Gigs: auto-rendered list (Google Calendar feed or gigs.json fallback) */
.ga-gigs-list{
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.ga-gig{
  text-align: left;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  border-radius: 18px;
  padding: 14px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
}

.ga-gig-datebox{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 10px 8px;
  text-align: center;
  line-height: 1.05;
}

.ga-gig-dow{
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: 0.9;
  font-size: 0.9rem;
}

.ga-gig-dom{
  font-weight: 900;
  font-size: 2.0rem;
  margin-top: 6px;
}

.ga-gig-mon{
  font-weight: 700;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  opacity: 0.9;
}

.ga-gig-datebox--tbc .ga-gig-tbc{
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.6px;
}

.ga-gig-body{
  min-width: 0;
}

.ga-gig-header{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ga-gig-image{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  flex: 0 0 auto;
}

.ga-gig-venue{
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
}

.ga-gig-sub{
  opacity: 0.92;
  margin-top: 6px;
  font-size: 0.98rem;
}

.ga-gig-links{
  margin-top: 10px;
}

.ga-gig-link{
  display: inline-block;
  text-decoration: underline;
}

.ga-gigs-fallback{
  margin-top: 12px;
}

/* Footer: tidy layout (prevents wrap weirdness) */
#sec-bdf0 .u-sheet-1{
  min-height: unset !important;
  padding-top: 22px;
  padding-bottom: 22px;
}

.ga-footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ga-footer__brand{
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.9;
}

.ga-footer__nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}

.ga-footer__link{
  display: inline-block;
  text-decoration: underline;
  color: inherit;
  opacity: 0.95;
}

.ga-footer__link:hover{
  opacity: 1;
}

/* Footer links: keep it subtle (fallback) */
.u-footer a.u-link{
  text-decoration: underline;
  color: inherit;
}

/* ========== Gordon's Alive: Cookie notice ========== */
.ga-cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 14px 14px 16px;
  background: rgba(0,0,0,0.92);
  border-top: 1px solid rgba(255,255,255,0.18);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.ga-cookie-banner.ga-cookie-banner--show{
  transform: translateY(0);
  opacity: 1;
}

.ga-cookie-inner{
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ga-cookie-copy{
  flex: 1 1 520px;
  min-width: 260px;
}

.ga-cookie-title{
  margin: 0 0 4px;
  font-weight: 700;
}

.ga-cookie-text{
  margin: 0;
  opacity: 0.9;
}

.ga-cookie-actions{
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  align-items: center;
}

.ga-cookie-details-btn{
  margin-top: 8px;
  background: transparent;
  border: 0;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  opacity: 0.9;
}

.ga-cookie-details{
  margin-top: 8px;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Responsive hero tweaks (match other pages) */
@media (max-width: 1199px){
  .u-section-1 .u-group-1{
    width: 88% !important;
    max-width: 660px !important;
    min-height: 0 !important;
    margin: 0 auto 26px !important;
    background-color: rgba(0,0,0,0.50) !important;
  }
  .u-section-1 .u-container-layout-1{ padding: 18px 20px !important; }
  .u-section-1 .u-text-1{ font-size: 2.25rem !important; line-height: 1.05 !important; }
  .u-section-1 .u-text-2{ font-size: 1.05rem !important; line-height: 1.25 !important; }
}

@media (max-width: 991px){
  .u-section-1 .u-group-1{
    width: 86% !important;
    max-width: 620px !important;
    margin-bottom: 20px !important;
  }
  .u-section-1 .u-container-layout-1{ padding: 16px 18px !important; }
  .u-section-1 .u-text-1{ font-size: 2.10rem !important; }
  .u-section-1 .u-text-2{ font-size: 1.00rem !important; }

  .u-section-2 .u-group-1{ width: 92% !important; }
}

@media (max-width: 575px){
  .u-section-1{ background-position: 50% 38% !important; }
  .u-section-1 .u-sheet-1{ min-height: 440px !important; }

  .u-section-1 .u-group-1{
    width: 88% !important;
    max-width: 420px !important;
    margin: 0 auto 14px !important;
    border-radius: 14px !important;
    background-color: rgba(0,0,0,0.44) !important;
  }
  .u-section-1 .u-container-layout-1{ padding: 12px 12px !important; }
  .u-section-1 .u-text-1{ font-size: 1.95rem !important; }
  .u-section-1 .u-text-2{ font-size: 0.95rem !important; }

  .u-section-2 .u-container-layout-1{ padding: 18px 16px; }

  /* Smaller screens: stack gigs nicely */
  .ga-gig{
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ga-gig-datebox{
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }
  .ga-gig-header{ justify-content: center; }
}

@media (max-height: 430px) and (orientation: landscape) and (max-width: 991px){
  .u-section-1 .u-sheet-1{ min-height: 340px !important; }
  .u-section-1 .u-group-1{
    width: 92% !important;
    max-width: 640px !important;
    margin: 0 auto 12px !important;
  }
  .u-section-1 .u-container-layout-1{ padding: 10px 14px !important; }
  .u-section-1 .u-text-1{ font-size: 1.85rem !important; line-height: 1.05 !important; }
  .u-section-1 .u-text-2{ font-size: 0.95rem !important; line-height: 1.20 !important; }
}

/* GA Shows controls (search / month jump / show more)
   ========================================================= */
.ga-gigs-controls{
  margin: 10px auto 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.ga-gigs-search,
.ga-gigs-month{
  appearance: none;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.20);
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  min-width: 220px;
  outline: none;
}

.ga-gigs-search::placeholder{
  color: rgba(255,255,255,0.60);
}

.ga-gigs-search:focus,
.ga-gigs-month:focus{
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}

.ga-gigs-clear{
  border-radius: 999px !important;
  padding: 10px 14px !important;
  background: rgba(255,255,255,0.06) !important;
  color: #ffffff !important;

  /* Centre the Clear button (especially when controls wrap) */
  flex: 0 0 100%;
  max-width: 140px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.ga-gigs-clear:hover{
  background: rgba(255,255,255,0.10) !important;
}

.ga-gigs-count{
  opacity: 0.85;
  font-size: 0.95rem;
  padding: 0 6px;

  /* Keep the count centred on its own line */
  flex: 0 0 100%;
  text-align: center;
}

.ga-gigs-showmore-wrap{
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.ga-gigs-showmore{
  border-radius: 999px !important;
  padding: 12px 18px !important;
}

/* Month headings inside the gigs list */
.ga-gig-month{
  margin-top: 18px;
  margin-bottom: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 900;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.95;
}

.ga-gigs-empty{
  padding: 18px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.22);
  text-align: center;
  opacity: 0.92;
}

@media (max-width: 575px){
  .ga-gigs-search,
  .ga-gigs-month{
    width: 100%;
    max-width: 360px;
    min-width: 0;
  }
}

