/* BT Müzik & Sahne Sanatları — site styles (brand: indigo/black, matched to live btmuzik.com) */

:root {
  --purple: #595cef;
  --purple-dark: #3b3d9f;
  --purple-deep: #090909;
  --teal: #595cef;
  --teal-dark: #3b3d9f;
  --orange: #090909;
  --orange-dark: #000000;
  --ink: #090909;
  --ink-soft: #6b6b6b;
  --paper: #ffffff;
  --paper-alt: #f4f4f4;
  --line: #e0e0e0;
  --radius: 12px;
  --font-serif: "Wix Madefor Display", "Segoe UI", sans-serif;
  --font-sans: "Wix Madefor Text", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.05rem;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 1.25rem; }

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; font-weight: 600; color: var(--purple-deep); }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin: 1.5rem 0 .5rem; }
p { margin-bottom: 1rem; }
ul, ol { margin: 0 0 1rem 1.4rem; }
li::marker { color: var(--teal); }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 252, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { max-width: 100%; padding: 0 1.75rem; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 96px; }

.logo { flex: 0 0 auto; }
.logo img { display: block; height: 80px; width: auto; }
.logo:hover { text-decoration: none; }

.main-nav { display: flex; align-items: center; gap: 1.25rem; }
.main-nav > ul { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; }
.main-nav li { position: relative; }
.main-nav a, .dropdown-toggle {
  display: block; padding: .55rem .7rem;
  color: var(--ink); font-size: .95rem; font-weight: 600;
  background: none; border: 0; cursor: pointer; font-family: var(--font-sans);
  border-radius: 8px; white-space: nowrap;
}
.main-nav a:hover, .dropdown-toggle:hover { color: var(--purple); text-decoration: none; background: var(--paper-alt); }
.main-nav li.active > a, .main-nav li.active > .dropdown-toggle { color: var(--purple); }

.chevron { display: inline-block; margin-left: .35rem; width: .45rem; height: .45rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); }

.has-dropdown > ul {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  list-style: none; margin: 0; padding: .4rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(58, 15, 51, .14);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s, transform .15s, visibility .15s;
}
.has-dropdown:hover > ul, .has-dropdown.open > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown > ul a { white-space: normal; }
.has-dropdown > ul li::marker { content: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.lang-selector { position: relative; }
.lang-selector select {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 1px solid var(--line); border-radius: 8px;
  color: var(--ink); font: inherit; font-size: .9rem; font-weight: 600;
  padding: .35rem 1.6rem .35rem .6rem; cursor: pointer;
}
.lang-selector::after {
  content: ''; position: absolute; right: .55rem; top: 50%;
  width: .35rem; height: .35rem; pointer-events: none;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
}

.header-social { display: flex; align-items: center; gap: .6rem; list-style: none; margin: 0; padding: 0; }
.header-social li::marker { content: none; }
.header-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--ink-soft); transition: background .15s, color .15s;
}
.header-social a:hover { background: var(--paper-alt); color: var(--purple); text-decoration: none; }
.header-social svg { width: 22px; height: 22px; display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: .7rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .98rem; cursor: pointer; border: 0;
  transition: background .15s, transform .1s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-gold { background: var(--orange); color: #fff; }
.btn-gold:hover { background: var(--orange-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--purple-deep); }
.btn-outline { border: 2px solid var(--teal); color: var(--teal-dark); background: transparent; }
.btn-outline:hover { background: var(--teal); color: #fff; }
.hero .btn-outline { border-color: #fff; color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--hero-img, none) center/cover no-repeat, var(--purple-deep);
  color: #f9f2f8; text-align: center;
  padding: clamp(4.5rem, 11vw, 8rem) 1.25rem;
}
.hero h1 { color: #fff; max-width: 32ch; margin: 0 auto 1rem; text-shadow: 0 2px 8px rgba(0,0,0,.75), 0 0 28px rgba(0,0,0,.5); }
.hero .lead { font-size: 1.2rem; color: #f3e4f0; max-width: 56ch; margin: 0 auto 2rem; text-shadow: 0 1px 6px rgba(0,0,0,.75), 0 0 20px rgba(0,0,0,.45); }
.hero .btn { margin: 0 .35rem .5rem; }

.hero.has-video {
  overflow: hidden; background: var(--purple-deep);
  min-height: 100vh; padding: 6rem 1.25rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero.has-video::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(0, 0, 0, .45); pointer-events: none;
}
.hero.has-video > *:not(.hero-video) { position: relative; z-index: 2; }
@media (max-width: 760px) {
  .hero.has-video { min-height: 0; padding: clamp(4.5rem, 11vw, 8rem) 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero.has-video { background: url('/assets/img/scraped/11062b_18e1576a57fb4368884d2be741f69950f000.jpg') center/cover no-repeat, var(--purple-deep); }
}

.page-hero {
  background: linear-gradient(150deg, var(--purple-deep) 0%, var(--purple-dark) 60%, var(--purple) 100%);
  color: #f3e4f0; padding: clamp(3rem, 7vw, 5rem) 1.25rem; text-align: center;
}
.page-hero.has-img { padding: clamp(2.5rem, 6vw, 4rem) 1.25rem; text-align: left; }
.page-hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.page-hero-grid .page-hero-text { text-align: left; }
.page-hero-grid h1, .page-hero-grid p { text-align: left; margin-left: 0; margin-right: 0; }
.page-hero-img {
  width: 100%; height: clamp(220px, 26vw, 340px); object-fit: cover;
  border-radius: var(--radius); box-shadow: 0 20px 45px rgba(0,0,0,.35);
}
.page-hero h1 { color: #fff; }
.page-hero p { max-width: 60ch; margin: 0 auto; }
@media (max-width: 760px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-grid .page-hero-text, .page-hero-grid h1, .page-hero-grid p { text-align: center; }
  .page-hero-img { height: 220px; }
}

.page-hero.has-map {
  position: relative; overflow: hidden; background: var(--purple-deep);
  min-height: clamp(320px, 45vw, 480px);
  padding: clamp(4.5rem, 10vw, 7.5rem) 1.25rem;
}
.page-hero.has-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.page-hero.has-map::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(58, 15, 51, .45); pointer-events: none;
}
.page-hero.has-map .map-caption {
  position: absolute; top: clamp(1rem, 4vw, 2.5rem); left: 1.25rem; right: 1.25rem;
  pointer-events: none;
}
.page-hero.has-map h1, .page-hero.has-map p { text-shadow: 0 2px 8px rgba(0,0,0,.75), 0 0 28px rgba(0,0,0,.5); }

/* ---------- Quote ticker ---------- */
.quote-ticker {
  overflow: hidden;
  background: var(--purple-deep);
  padding: 1.4rem 0;
}
.quote-ticker__track {
  display: flex;
  width: max-content;
  animation: quote-ticker-scroll 50s linear infinite;
}
.quote-ticker__group { display: flex; align-items: center; flex-shrink: 0; }
.quote-ticker__item {
  display: inline-flex; align-items: baseline; flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-sans); font-weight: 700; text-transform: uppercase;
  letter-spacing: .015em;
  font-size: 1.05rem; color: #f3e4f0;
}
.quote-ticker__item cite {
  font-family: var(--font-sans); font-style: normal; font-weight: 800;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); margin-left: .65rem;
}
.quote-ticker__sep {
  flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%;
  background: var(--orange); opacity: .7; margin: 0 2.25rem;
}
@keyframes quote-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.quote-ticker:hover .quote-ticker__track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) {
  .quote-ticker__track { animation: none; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-alt { background: var(--paper-alt); }
.section .narrow { max-width: 760px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title p { color: var(--ink-soft); max-width: 60ch; margin: 0 auto; }

.cta-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; max-width: none; }
.cta-row .section-title { text-align: left; margin-bottom: 0; }
.cta-row .section-title p { margin: .5rem 0 0; max-width: 55ch; }
.cta-row .btn { flex-shrink: 0; }

blockquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.35rem; line-height: 1.5;
  border-left: 4px solid var(--orange); padding: .5rem 0 .5rem 1.5rem;
  margin: 2rem 0; color: var(--ink);
}
blockquote cite { display: block; font-family: var(--font-sans); font-style: normal; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-dark); margin-top: .6rem; }

/* ---------- Images ---------- */
.content-img {
  display: block; margin: 2rem auto; border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(58, 15, 51, .15); max-height: 620px; width: auto; max-width: 100%;
}

.content-logo {
  display: block; margin: 2rem auto; max-width: 340px; width: 100%; height: auto;
}
.img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; align-items: start; }
.img-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.img-row img { border-radius: var(--radius); box-shadow: 0 10px 30px rgba(58, 15, 51, .15); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.img-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.img-split img { border-radius: var(--radius); box-shadow: 0 10px 30px rgba(58, 15, 51, .15); width: 100%; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 10px; box-shadow: 0 6px 18px rgba(58, 15, 51, .12);
  transition: transform .2s;
}
.gallery img:hover { transform: scale(1.02); }

/* ---------- Instagram strip ---------- */
.instagram-strip { padding-bottom: clamp(2.5rem, 6vw, 4rem); overflow: hidden; }
.instagram-strip .section-title { margin-bottom: 1.75rem; }
.instagram-strip h2 a { color: var(--purple); }
.instagram-strip h2 a:hover { text-decoration: underline; }
.instagram-strip__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 0 1rem;
}
.instagram-strip__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: .25rem 0;
}
.instagram-strip__track::-webkit-scrollbar { display: none; }
.instagram-strip__track a {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: clamp(150px, 21vw, 240px);
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper-alt);
  box-shadow: 0 4px 14px rgba(58, 15, 51, .08);
  transition: transform .2s, box-shadow .2s;
}
.instagram-strip__track a:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(58, 15, 51, .14); text-decoration: none; }
.instagram-strip__track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.instagram-strip__track a:hover img { transform: scale(1.06); }
.instagram-strip__arrow {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: background .15s, color .15s, transform .1s;
  z-index: 2;
}
.instagram-strip__arrow:hover:not(:disabled) { background: var(--purple); color: #fff; border-color: var(--purple); }
.instagram-strip__arrow:disabled { opacity: .35; cursor: default; }
.instagram-strip__arrow:active { transform: scale(.96); }
.instagram-strip__arrow svg { width: 24px; height: 24px; fill: currentColor; }
@media (max-width: 760px) {
  .instagram-strip__wrap { padding: 0 .5rem; gap: .35rem; }
  .instagram-strip__arrow { width: 36px; height: 36px; }
  .instagram-strip__track a { width: clamp(130px, 38vw, 180px); }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: 0 4px 14px rgba(58, 15, 51, .06);
}
.card h3 { margin-top: 0; }
.card .card-img {
  display: block; width: calc(100% + 3.5rem); max-width: none; height: auto;
  aspect-ratio: 4/3; object-fit: cover; margin: -1.75rem -1.75rem 1.25rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.card .card-num { font-family: var(--font-serif); font-size: 2rem; color: var(--orange); line-height: 1; }
.card .card-meta { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .25rem; }
.card-quote { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; }
.card > a:last-child { margin-top: auto; padding-top: .5rem; align-self: flex-start; }
.card-clamp {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
  overflow: hidden;
}

/* ---------- Forms ---------- */
form.contact-form { max-width: 640px; margin: 0 auto; display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { font-weight: 600; font-size: .92rem; display: block; margin-bottom: .3rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .7rem .9rem; font: inherit;
  border: 1px solid #d8c9d4; border-radius: 8px; background: #fff;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--teal); border-color: var(--teal); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .9rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--purple-deep); color: #dccfdb; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-top: 3.5rem; padding-bottom: 2.5rem; }
.site-footer h4 { color: #fff; margin-bottom: .75rem; font-size: 1.05rem; }
.site-footer a { color: #f0e4ee; }
.site-footer .logo img { height: 52px; border-radius: 8px; }
.footer-bottom { border-top: 1px solid #55204c; padding-top: 1.25rem; padding-bottom: 1.5rem; font-size: .9rem; }
.footer-bottom a { color: #c9b3c5; }

.social-links { display: flex; gap: .75rem; list-style: none; margin: 0; padding: 0; }
.social-links li::marker { content: none; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  transition: background .15s, transform .1s;
}
.social-links a:hover { background: var(--teal); transform: translateY(-2px); text-decoration: none; }
.social-links svg { width: 18px; height: 18px; display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 96px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.25rem;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav > ul { flex-direction: column; align-items: stretch; }
  .main-nav a, .dropdown-toggle { width: 100%; text-align: left; padding: .7rem .5rem; }
  .has-dropdown > ul {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-left: 3px solid var(--paper-alt);
    border-radius: 0; padding: 0 0 0 .75rem; display: none;
  }
  .has-dropdown.open > ul { display: block; }
  .nav-cta { margin-top: .75rem; text-align: center; }
  .lang-selector { margin-top: .75rem; }
  .main-nav > ul.header-social { flex-direction: row; align-items: center; margin-top: .75rem; justify-content: center; }
  .grid-2, .grid-3, .form-row, .img-row, .img-row.cols-3, .img-split { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
