/* ============================================================
   INNER PAGE STYLES — jazzinfourseasons.com
   ------------------------------------------------------------
   Loaded only on inner pages (not the SHTML homepage).
   Sections, in order:

     1.  Page-level utilities (top wave, base spacing)
     2.  Nav — desktop  (≥1101px)
     3.  Nav — mobile/tablet  (.new-nav, ≤1100px)
     4.  Inner page hero (.page-hero)
     5.  Page headings (page-h1, page-h2, intro/disk titles, tagline, creditline)
     6.  Album disc hero (Spring page)
     7.  Hero stream buttons
     8.  Concerts — listing + tabs
     9.  Concerts — gallery + lightbox
     10. Contact page
     11. About page
     12. Footer
     13. Section system (sect-- adjacency)
     14. Global links
   ============================================================ */


/* ============================================================
   1. PAGE-LEVEL UTILITIES
   ============================================================ */

.page-top-wave {
    position: fixed;
    top: 0;
    left: -1px;
    right: -1px;
    width: auto;
    height: 8px;
    background-image: url('/assets/img/decorative/wave-bluegreen-d.svg');
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left center;
    z-index: 9999;
}

@media (max-width: 768px) {
  body {
    padding-top: 0 !important;
  }
}

html {
  scroll-padding-top: 144px;
}

@media (max-width: 1100px) { html { scroll-padding-top: 88px; } }
@media (max-width: 960px)  { html { scroll-padding-top: 75px; } }
@media (max-width: 600px)  { html { scroll-padding-top: 60px; } }

/* ============================================================
   2. NAV — DESKTOP (≥768px)
   ------------------------------------------------------------
   Centred logo above a single nav row.
   Below 1100px, section 3 (.new-nav, mobile/tablet) hides the
   desktop nav and shows the burger menu instead.
   ============================================================ */

nav.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
    height: 142px;
  z-index: 1000;
  border-bottom: 0.5px solid #ececec !important;
        padding-top: 18px;
        padding-bottom: 14px;
  background-color: white;
  margin-top: 0;
  box-sizing: border-box;
  transition: none;
}


@media (min-width: 768px) {

  body {
    padding-top: 144px;
  }

  nav.nav,
  .nav.is-stuck {
    box-shadow: none !important;
  }
.nav-single-row a::after {
    display: none !important;
  }


  .inner-nav .nav-logo img {
    margin-top: 14px;
  }

  .desktop-nav.inner-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    height: auto !important;
  }

  .nav-logo {
    margin-bottom: 20px;
  }

  .nav-logo img {
    height: 48px !important;
    margin: 0;
    display: block;
  }

  .nav-single-row {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 28px;
    height: 54px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav-single-row li {
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0;
  }

  .nav-single-row a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 5px 4px;
  }
}
@media (max-width: 1100px) {
  body {
    padding-top: 88px;
  }
}

@media (max-width: 960px) {
  body {
    padding-top: 75px;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 60px;
  }
}

/* ============================================================
   3. NAV — MOBILE / TABLET  (.new-nav, ≤1100px)
   ------------------------------------------------------------
   Three breakpoints: 1100 / 960 / 600.
   Burger always on the right. "MENU" word only at 1100px.
   Layout: CSS grid (1fr auto 1fr), logo centred, trigger right.
   ============================================================ */

/* Above 1100px: hide mobile container (desktop nav from section 2 shows) */
@media (min-width: 1101px) {
  .new-nav .mobile-nav-container {
    display: none !important;
  }
}

/* At 1100px and below: hide desktop nav */
@media (max-width: 1100px) {

  .new-nav .desktop-nav.inner-nav {
    display: none !important;
  }

  .new-nav.nav {
    height: 88px !important;
    max-height: 88px !important;
    padding: 0 !important;
    border: none !important;
    overflow: visible !important;
  }

  .new-nav .mobile-nav-container {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
  }

  .new-nav .mobile-nav-container .site-title {
    grid-column: 2;
    height: 46px;
    width: auto;
    display: block;
    margin: 0 auto;
  }

  .new-nav .menu-trigger {
    grid-column: 3;
    justify-self: end;
    display: inline-flex !important;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    cursor: pointer;
  }

  .new-nav .menu-trigger-label {
    font-family: "ABChanelCouture-Regular", "Cabin", Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000;
    line-height: 1;
  }

  .new-nav .menu-trigger-icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 28px;
    height: 20px;
  }

  .new-nav .menu-trigger-icon .line {
    display: block;
    width: 28px;
    height: 1px;
    background-color: #000;
    margin: 4px 0;
    transition: transform 0.3s ease, margin 0.3s ease;
  }

  .new-nav .menu-trigger.open .line1 { transform: rotate(45deg);  margin-bottom: -3px; }
  .new-nav .menu-trigger.open .line2 { transform: rotate(-45deg); margin-top: 2px; }
}

/* ≤960px: smaller logo bar, hide MENU word */
@media (max-width: 960px) {

  .new-nav.nav {
    height: 75px !important;
    max-height: 75px !important;
  }

  .new-nav .mobile-nav-container .site-title {
    height: 36px;
  }

  .new-nav .menu-trigger-label {
    display: none;
  }
}

/* ≤600px: smallest logo bar */
@media (max-width: 600px) {

  .new-nav.nav {
    height: 60px !important;
    max-height: 60px !important;
  }

  .new-nav .mobile-nav-container .site-title {
    height: 30px;
  }

  .new-nav .mobile-nav-container {
    padding: 0 1rem;
  }
}

/* Mobile overlay menu: larger link size for inner pages */
.nav-overlay .mobile-menu-list li a {
  font-size: 22px !important;
}


/* ============================================================
   4. INNER PAGE HERO
   ============================================================ */

.page-hero {
  width: 100%;
  margin-top: 13px;
  height: 280px;
  background-color: #bdc9c5;
  margin-bottom: 3rem;
}

.page-hero video,
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ============================================================
   5. PAGE HEADINGS
   ------------------------------------------------------------
   page-h1 / page-h2 use a span-based surtitle + main pattern.
   page-intro-title / page-disk-title swap visibility at 768px.
   ============================================================ */

.page-h1,
.page-h2 {
  text-align: center;
  padding: 0;
  font-weight: normal;
}

.page-h1 {
  margin-top: 60px;
}

.page-h2 {
  margin: 0;
}

.page-h1 .h1-surtitle,
.page-h2 .h2-surtitle {
  display: block;
  font-family: "ABChanelCouture-Regular", "Cabin", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: rgb(88, 88, 88);
  margin-bottom: 7px;
}

.page-h1 .h1-main,
.page-h2 .h2-main {
  display: block;
  font-family: "ABChanelCouture-Regular", "Cabin", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
}

.page-h1 .h1-main {
  font-size: 1.5rem !important;
}

.inner-page-title {
  margin-top: 60px;
}

/* Title swap: disk title on desktop, intro title on mobile */
.page-intro-title {
  display: none;
}

.page-disk-title {
  display: block;
  margin: 5px auto 30px;
  width: 95%;
  text-align: center;
}

@media (max-width: 768px) {

  .page-intro-title {
    display: block;
    margin: 80px auto 0;
    width: 95%;
    text-align: center;
  }
}

.tagline {
  color: cadetblue;
  font-size: 14px;
  margin-bottom: 10px;
}

.creditline {
  color: rgb(51, 118, 121);
  font-family: "ABChanelCouture-Regular", "Cabin", Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin: 10px 0;
  text-align: center;
  text-align-last: auto;
}


/* ============================================================
   6. ALBUM DISC HERO  (Spring page)
   ------------------------------------------------------------
   Three layers: flowers background, spinning CD, album cover.
   GSAP handles entrance + spin; elements start opacity:0.
   ============================================================ */

.album-disc-section {
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 0 50px;
  overflow: hidden;
  margin-top: 30px;
}

.album-disc-wrapper {
  /* First number = max size on big screens (px)
     Second number = % of viewport width on smaller screens (vw) */
  width: min(650px, 50vw);
  height: min(650px, 50vw);
  position: relative;
}

/* --- Layer 1: background flowers --- */
.album-disc-flowers {
  position: absolute;
  z-index: 1;
  opacity: 0;
}

.album-disc-flowers img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.album-disc-flowers--left {
  width: 110%;
  height: 110%;
  top: -3%;
  left: -47%;
  z-index: 2;
}

/* Right copy — 90° rotation is its resting state */
.album-disc-flowers--right {
  width: 105%;
  height: 105%;
  top: -22%;
  left: 20%;
  transform: rotate(90deg);
}

/* --- Layer 2: spinning CD --- */
.album-disc-cd {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 70%;
  height: 70%;
  z-index: 2;
  opacity: 0;
}

.album-disc-cd img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%; /* CD is a physical circle */
}

/* --- Layer 3: album cover --- */
.album-disc-cover {
  position: absolute;
  top: 50%;
  left: 47%;
  width: 72%;
  height: 72%;
  z-index: 3;
  box-shadow: 3px 3px 11px rgba(0, 0, 0, 0.7);
  opacity: 0;
}

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

/* Album disc — responsive */
@media (max-width: 768px) {

  .album-disc-section {
    padding: 40px 0 0 30px;
  }

  .album-disc-wrapper {
    width: 90vw;
    height: 90vw;
  }
}

@media (max-width: 767px) {

  .album-disc-wrapper {
    width: 60vw !important;
    height: 60vw !important;
  }
}

@media (max-width: 480px) {

  .album-disc-wrapper {
    width: 95vw;
    height: 95vw;
  }
}


/* ============================================================
   7. HERO STREAM BUTTONS
   ============================================================ */

.hero-streams {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 12px 0 40px;
}

.hero-streams a {
  background: #4a4a4a;
  color: #fff;
  padding: 0.8rem 1.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-streams a:hover {
  background: #2a2a2a;
  color: #fff !important;
}

@media (max-width: 950px) {

  .hero-streams a {
    padding: 0.6rem 1.1rem !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.08em !important;
  }
}


/* ============================================================
   8. CONCERTS — LISTING + TABS
   ============================================================ */

.concerts-list {
  max-width: 1000px;
  margin: 4rem auto 0;
  font-family: 'Montserrat', sans-serif;
  color: #000;
}

/* Tabs */
.concerts-tabs {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 0;
}

.concerts-tab {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  text-transform: uppercase;
}

.concerts-tab.is-active {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.concerts-tab-sep {
  color: rgba(0, 0, 0, 0.3);
  font-weight: 300;
}

/* Rows */
.concerts-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.concerts-info {
  line-height: 1.5;
}

.concerts-date {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.concerts-city,
.concerts-title,
.concerts-venue {
  font-size: 0.95rem;
  color: #000;
}

/* Ticket / notify CTA */
.concerts-cta {
  display: inline-block;
  min-width: 180px;
  padding: 0.85rem 2rem;
  background: #4a4a4a;
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.concerts-cta:hover {
  background: #2a2a2a;
}

.concerts-loading,
.concerts-empty {
  padding: 2rem 0;
  color: rgba(0, 0, 0, 0.6);
  font-style: italic;
}

@media (max-width: 640px) {

  .concerts-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .concerts-cta {
    justify-self: start;
    min-width: 140px;
    padding: 0.7rem 1.4rem;
  }
}


/* ============================================================
   9. CONCERTS — GALLERY + LIGHTBOX
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}


.gallery-item {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-credits {
  text-align: center;
  text-align-last: center;
  font-size: 0.75rem;
  line-height: 1.8;
  margin-top: 2rem;
  color: rgba(0, 0, 0, 0.85);
}

/* GLightbox: kill default rounded corners */
.glightbox-container .gslide-media,
.glightbox-container .gslide-description,
.glightbox-container .gdesc-inner,
.glightbox-container img,
.glightbox-container video {
  border-radius: 0 !important;
}

@media (max-width: 768px) {

  .gallery-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }

  .gallery-item {
    display: block !important;
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .gallery-item img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: cover;
  }
}


/* ============================================================
   10. CONTACT PAGE
   ============================================================ */

.contact-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-intro p {
  text-align: center;
  text-align-last: center;
}

.contact-blocks {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 60px;
}

.contact-item {
  text-align: center;
  max-width: 280px;
}

.contact-item img {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.8rem;
  opacity: 0.8;
}

.ci-title {
  font-family: "ABChanelCouture-Regular", "Cabin", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--pink);
  margin-bottom: 0.6rem;
}

.ci-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.ci-link a {
  font-family: "ABChanelCouture-Regular", "Cabin", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ci-link a:hover {
  color: rgb(255, 158, 39);
}

.contact-form {
  max-width: 940px;
  margin: 0 auto;
}

@media (max-width: 640px) {

  .contact-blocks {
    gap: 2.5rem;
  }
}


/* ============================================================
   11. ABOUT PAGE
   ============================================================ */

.about-socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.about-socials img {
  height: 32px;
  width: auto;
  display: block;
}


/* ============================================================
   12. FOOTER
   ------------------------------------------------------------
   Above 950px : hide merged column, use original 4-col layout.
   951–650px   : 3 columns; merged column replaces cols 2 + 3.
   ≤650px      : single column; merged column still used.
   ============================================================ */

.footer-col-merged {
  display: none;
}

.footer-vertical-spacer {
  display: none;
}

@media (max-width: 950px) and (min-width: 651px) {

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-col {
    padding: 0;
  }

  .footer-col-merged {
    display: flex;
  }

  .footer-grid .footer-col:nth-child(2),
  .footer-grid .footer-col:nth-child(3) {
    display: none;
  }
}

@media (max-width: 650px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  footer {
    padding: 2rem 2rem 1.7rem;
  }

  .footer-col {
    padding: 0;
  }

  .footer-col-merged {
    display: flex;
  }

  .footer-grid .footer-col:nth-child(2),
  .footer-grid .footer-col:nth-child(3) {
    display: none;
  }

  .footer-vertical-spacer {
    display: block;
    margin-top: 10px;
    color: grey;
    font-size: 10px;
  }
}

/* Centre everything inside the merged column */
.footer-col-merged,
.footer-col-merged * {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.footer-social-icons a {
  display: inline-block;
  line-height: 0;
}

.footer-social-icons img {
  height: 20px;
  width: auto;
  display: block;
}

/* Footer font-size steps */
@media (max-width: 1100px) {

  .footer-col p,
  .footer-col a {
    font-size: 12px;
  }
}

@media (max-width: 950px) {

  .footer-col p,
  .footer-col a {
    font-size: 11px;
  }
}


/* ============================================================
   13. SECTION SYSTEM — sect-- adjacency rules
   ============================================================ */

main.wrapper > [class*="sect--"]:nth-of-type(1) {
  padding-top: 1.1rem;
}

[class*="sect--"] + [class*="sect--"] {
  margin-top: -1px;
}


/* ============================================================
   14. GLOBAL LINKS
   ============================================================ */

a {
  text-decoration: none;
  color: #0d8e93;
  font-weight: 500;
}

a:hover {
  text-decoration: none;
  color: #056164 !important;
  font-weight: 500;
}