/* ===========================
   CORE RESET & PAGE CONTAINER
   =========================== */
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}


/* ===========================
   FONTS & BG COLORS
   =========================== */
:root{
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", Times, serif;

  --brand: #5E6F97;
  --brand-dark: #3F4F74;
  --brand-tint: #EEF1F7;


}

.background-brand {
  background-color: var(--brand);
}

.background-brand-tint {
    background-color: var(--brand-tint);
}

/* Base */
body{
  font-family: var(--font-body);
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6{
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Make Bootstrap “lead” feel a touch more premium */
.lead{
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
}

/* Buttons keep body font */
.btn{
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Optional: nicer blockquotes for testimonials */
blockquote{
  font-family: var(--font-body);
}

.logo-sans{
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}



/* ===========================
   NAVBAR
   =========================== */

   .navbar-brand img {
    height: 150px;
    
   }


   /* Premium dropdown styling for navbar */
  .navbar .dropdown-menu {
    border-radius: 0px;
    box-shadow: 0 8px 32px rgba(60,70,90,0.15);
    border: none;
    padding: 0.5rem 0;
    min-width: 180px;
    background: #fff;
  }

  .navbar .dropdown-item {
    padding: 0.65rem 1.5rem;
    font-weight: 500;
    color: #3F4F74 !important;
    transition: background 0.15s, color 0.15s;
  }

  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:focus {
    background: #EEF1F7;
    color: #5E6F97;
  }

  .navbar .dropdown-toggle::after {
    margin-left: 0.3em;
    vertical-align: 0.15em;
  }


/* ===========================
   HERO / BANNER (parallax window + moving layer)
   Goal: allow MORE parallax movement with LESS zoom by giving the moving layer
   extra vertical "bleed" area. JS can then translate further without showing black.
   =========================== */

/* The visible window (what the user sees) */
.hero-location__image{
  position: relative;
  overflow: hidden;
  background: #111;

  /* KNOB: mobile height (default fallback) */
  height: var(--hero-h-m, 50vh);
}

@media (min-width: 768px){
  .hero-location__image{
    /* KNOB: desktop height (default fallback) */
    height: var(--hero-h-d, 80vh);
  }
}


/* The moving layer (this is what JS translates up/down)
   KNOB (CSS bleed): top/bottom negative values create spare image area WITHOUT zoom.
   Was: inset: 0; (no bleed)
   Now: extra 16% above + 16% below (32% total extra height)
*/
.hero-location__parallax{
  position: absolute;
  left: 0;
  right: 0;

  /* MOBILE: small bleed so portrait images don’t crop hard */
  top: calc(var(--hero-bleed-m, 8%) * -1);
  bottom: calc(var(--hero-bleed-m, 8%) * -1);

  transform: translate3d(0,0,0) scale(var(--hero-scale, 1.02));
  will-change: transform;
}

@media (min-width: 768px){
  .hero-location__parallax{
    /* DESKTOP: keep your big bleed */
    top: calc(var(--hero-bleed, 75%) * -1);
    bottom: calc(var(--hero-bleed, 75%) * -1);
  }
}




/* Ensure the picture/img fill the moving layer (so bleed actually contains image) */
.hero-location__parallax picture,
.hero-location__parallax img{
  width: 100%;
  height: 100%;
  display: block;
}

/* Image is purely visual, never affects layout */
.hero-location__img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* KNOB (framing): per-page object-position via CSS variables */
  object-position: var(--hero-pos-m, center);

  display: block;
}

@media (min-width: 768px){
  .hero-location__img{
    object-position: var(--hero-pos-d, center top);
  }
}



/* Homepage caption overlay (bottom-left) */
.hero-location__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 60%);
  pointer-events: none;
}

.hero-location__caption{ max-width: 34rem; }

.hero-location__eyebrow{
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-location__headline{
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
  line-height: 1.1;
}


@media (min-width: 768px){
  .hero-location__image[style*="--hero-h-d:"]{
    height: var(--hero-h-d);
  }
}


/* Center title overlay (for partial pages) */
.hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__overlay--center{
  background: radial-gradient(circle at center, rgba(0,0,0,.35), rgba(0,0,0,0) 60%);
}

.hero__title{
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
  margin: 0;
}



/* LOCATION PILLS */
.locations-pills{
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.locations-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .45rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.6);
  color: rgba(0,0,0,.78);
  text-decoration: none;
  font-size: .95rem;
  line-height: 1.1;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}

.locations-pill:hover{
  background: rgba(0,0,0,.03);
  border-color: rgba(0,0,0,.18);
  color: rgba(0,0,0,.92);
  transform: translateY(-1px);
  text-decoration: none;
}

.locations-pill--all{
  border-color: rgba(0,0,0,.18);
  font-weight: 600;
}




/* --- PREMIUM CTA BUTTON --- */
.btn-primary{
  background-color: var(--brand);
  border-color: var(--brand);
  border-radius: 0;

}
.btn-primary:hover{
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
  
}

a{ color: var(--brand-dark); }
a:hover{ color: var(--brand); }

.btn-outline-primary{
  color: var(--brand);
  border-color: var(--brand);
  border-radius: 0;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus{
  color: #fff;
  background-color: var(--brand);
  border-color: var(--brand);
}

.btn-outline-primary:active{
  background-color: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-outline-primary:focus{
  box-shadow: 0 0 0 .25rem rgba(94,111,151,.25);
}


/* ===========================
   TRUST BADGE
   =========================== */
.trust-badge {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: #856404;
  max-width: 400px;
}

/* ===========================
   GALLERY SWIPER
   =========================== */
.gallery-swiper .gallery-image-container {
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .gallery-swiper .gallery-image-container { height: 300px; }
}
.gallery-swiper .gallery-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
  background: #111;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  display: block;
  margin: 0 auto;
}

/* ===========================
   LISTEN SECTION (AUDIO PLAYER)
   =========================== */
.audio-list {
  padding-left: 0;
}
.audio-play-btn {
  background: none;
  border: none;
  color: var(--brand);
  font-size: 1.15rem;
  vertical-align: middle;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s cubic-bezier(.4,2,.6,1);
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.audio-play-btn:hover,
.audio-play-btn:focus {
  color: var(--brand-dark);
  background: rgba(191,164,110,0.08);
  transform: scale(1.18);
}
.audio-play-btn[disabled] {
  color: #ccc;
  cursor: not-allowed;
}
.audio-title {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.15s;
  vertical-align: middle;
}
.audio-title:hover,
.audio-title:focus {
  color: #bfa46e;
  text-decoration: underline;
}

/* ===========================
   REPERTOIRE SECTION (PREMIUM GLASS + LAYOUT)
   =========================== */
.repertoire-section {
  position: relative;
  /* padding: 3rem 0; */
  background-image: url("https://res.cloudinary.com/dzu5f13ld/image/upload/v1762875366/aderyn-string-quartet-landing-comp_d80cez.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.repertoire-section .repertoire-overlay {
  background: rgba(34,34,34,0.72);
  backdrop-filter: blur(4px) saturate(1.2);
  /* border-radius: 18px; */
  box-shadow: 0 8px 48px 0 rgba(0,0,0,0.10);
  padding: 2rem 1rem;
}

/* Desktop content box */
.repertoire-content {
  height: 600px;
  overflow-y: auto;
}
.repertoire-genres .list-group-item {
  background-color: transparent;
  color: #f8f9fa;
  border-color: rgba(255, 255, 255, 0.2);
}
.repertoire-genres .list-group-item.active {
  background-color: #f8f9fa;
  color: #212529;
  border-color: #f8f9fa;
}

/* Mobile: remove background image/overlay for simplicity */
@media (max-width: 991.98px) {
  .repertoire-section { background-image: none; padding: 2rem 0; }
  .repertoire-section .repertoire-overlay { background: transparent; padding: 0; }
}

/* Two-column repertoire list on desktop, single column on mobile */
.repertoire-list { column-count: 1; column-gap: 2rem; }
@media (min-width: 992px) {
  .repertoire-list { column-count: 2; color: #fff; }
}

/* Repertoire section headings */
.repertoire-section h2, .repertoire-section h3 {
  
  text-shadow: 0 1px 6px rgba(0,0,0,0.10);
}

/* ===========================
   FAQ SECTION (PREMIUM LOOK)
   =========================== */
#faq details {
  background: rgba(255,255,255,0.85);
  border-radius: 10px;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 8px 0 rgba(191,164,110,0.08);
  overflow: hidden;
  border-left: 3px solid var(--brand);
}
#faq summary {
  font-weight: 600;
  color: var(--brand);
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-size: 1.08rem;
  outline: none;
}
#faq details[open] summary {
  color: #222;
  background: #f7f3ea;
}
#faq details > div {
  padding: 0 1.2rem 1rem 1.2rem;
  color: #222;
}

/* ===========================
  GALLERY PAGE
   =========================== */
/* Gallery grid */
.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #f3f3f3;
}

/* consistent tile shape */
.gallery-grid-item::before {
  content: "";
  display: block;
  padding-top: 75%; /* 4:3 tiles */
}

.gallery-grid-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 220ms ease;
}

@media (hover: hover) {
  .gallery-grid-item:hover img {
    transform: scale(1.03);
  }
}

/* ===========================
  ABOUT PAGE
   =========================== */
/* Agency badges (About page) */
.agent-badge {
  display: block;
  height: 80px;      /* adjust: 48–64px usually feels right */
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.9;
}

@media (hover: hover) {
  .agent-badge {
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .agent-badge:hover {
    opacity: 1;
    transform: translateY(-1px);
  }
}

/* Repertoire count-up stats */
.rep-stat {
  padding: 10px 0;
}

.rep-stat__num {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.rep-stat__label {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.65);
  margin-top: 4px;
}


/* ===========================
   CONCERT LIST & CARD STYLES
   =========================== */
.concert-list {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.concert-card {
  border-left: 10px solid var(--brand);
  background: #f7f8fa;
  transition: box-shadow 0.18s, border-color 0.18s;
  box-shadow: 0 2px 18px 0 rgba(94,111,151,0.08) !important;
  border-radius: 0px !important;
}
.concert-card:hover {
  box-shadow: 0 4px 32px 0 rgba(94,111,151,0.15) !important;
  border-left-color: var(--brand-dark);
}

.concert-date-widget {
  min-width: 72px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.date-badge {
  background: var(--brand) !important;
  color: #fff;
  display: inline-block;
  min-width: 54px;
  border-radius: 0px !important;
  box-shadow: 0 2px 8px 0 rgba(94,111,151,0.10);
  margin-bottom: 0.2rem;
}
.date-badge__day {
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
}
.date-badge__month {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.1;
}

.city-badge {
  border: 1.5px solid var(--brand-tint);
  background: #fff;
  background-color: var(--brand) !important;
  color: #fff !important;
  border-radius: 0px !important;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(94,111,151,0.06);
  white-space: nowrap;
}
.city-badge i {
  font-size: 1.1em;
  margin-right: 0.3em;
  color: var(--brand);
}


@media (max-width: 576px) {
  .concert-list {
    max-width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .concert-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1.15rem 0.8rem;
  }
  .concert-date-widget {
    margin-right: 0 !important;
    margin-bottom: 0.5rem !important;
  }
}

/* Optional: make the city stand out a bit more */
.concert-card .fw-bold {
  color: var(--brand-dark);
}




/* ===========================
   BOOTSTRAP OVERRIDE: NO GUTTER
   =========================== */
.container-fluid { --bs-gutter-x: 0; }

/* ===========================
  FOOTER
   =========================== */

.footer-badge-img{
  height: 90px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  border-radius: 6px; /* optional, remove if you want perfectly square */
}

@media (max-width: 576px){
  .footer-badge-img{
    height: 72px;
    max-width: 140px;
  }
}

.footer-cta-title{
  font-weight: 600;
  margin-bottom: .25rem;
}

.footer-contact-link{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(0,0,0,.7);
  text-decoration: none;
  font-size: .95rem;
}

.footer-contact-link:hover{
  color: rgba(0,0,0,.9);
  text-decoration: none;
}

.footer-contact-link i{
  opacity: .75;
}

.footer-badge-img{
  height: 90px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

@media (max-width: 576px){
  .footer-badge-img{ height: 72px; max-width: 150px; }
}

