/* =============================================
   יוחנן פרידמן – ניהול אמנים
   Main Stylesheet
   ============================================= */

/* ===== Construction Banner ===== */
#constructionBanner {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1001;
  background: repeating-linear-gradient(
    -45deg,
    #c9a84c,
    #c9a84c 10px,
    #0a1628 10px,
    #0a1628 20px
  );
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cb-text {
  background: #0a1628;
  color: #c9a84c;
  padding: 4px 18px;
  border-radius: 20px;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: .9rem;
  letter-spacing: 1px;
}
.cb-icon { font-size: 1rem; }
body.has-banner .navbar { top: 38px; }

/* ---------- Variables ---------- */
:root {
  --navy:         #08122a;
  --navy-mid:     #0f1f42;
  --navy-light:   #1a3060;
  --gold:         #c9a84c;
  --gold-light:   #e0c870;
  --silver:       #a8b8d0;
  --silver-light: #d0dce8;
  --cream:        #f6f3ee;
  --cream-dark:   #ede9e2;
  --white:        #ffffff;
  --text-dark:    #1a2744;
  --text-mid:     #4a5e80;
  --radius:       10px;
  --shadow:       0 8px 32px rgba(8,18,42,.18);
  --shadow-card:  0 4px 20px rgba(8,18,42,.22);
  --transition:   .3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---------- Utilities ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.text-center { text-align: center; }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp .8s ease forwards;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(201,168,76,.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.5); }
.btn-outline {
  border: 2px solid var(--silver-light);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ---------- Section typography ---------- */
.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.section-tag.gold { color: var(--gold); }
.section-title {
  font-family: 'Frank Ruhl Libre', serif;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title.dark { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); }
.section-title.white { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--white); }
.section-desc { color: var(--silver); margin-bottom: 10px; font-size: 1.05rem; }
.section-header { margin-bottom: 48px; }
.section-header.reveal { margin-bottom: 48px; }

.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  margin-bottom: 24px;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ---------- Section Backgrounds ---------- */
.section-light { background: var(--cream); padding: 96px 0; }
.section-dark  { background: var(--navy); padding: 96px 0; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  transition: top .2s ease, background .4s, box-shadow .4s, padding .4s;
  padding: 18px 0;
  transition: background .4s, box-shadow .4s, padding .4s;
}
.navbar.scrolled {
  background: rgba(8,18,42,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; }
.logo-main {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo-sub {
  font-size: .72rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1.5px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: var(--silver-light);
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  margin-right: 12px;
}
.lang-btn {
  padding: 5px 10px;
  border: 1px solid rgba(168,184,208,.3);
  border-radius: 4px;
  color: var(--silver);
  font-size: .75rem;
  font-weight: 600;
  transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #060e1f 0%, #0a1530 50%, #06101e 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.stars {
  position: absolute;
  inset: 0;
}
.star-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(168,184,208,.6);
  animation: float var(--dur, 6s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
}
.hero-content {
  text-align: center;
  z-index: 1;
  padding: 100px 24px 60px;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--silver-light);
  margin-bottom: 24px;
  letter-spacing: 4px;
}
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.div-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.div-line:first-child {
  background: linear-gradient(270deg, transparent, var(--gold));
}
.div-icon { color: var(--gold); font-size: 1.1rem; animation: spin-slow 20s linear infinite; }
.hero-tagline {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--silver);
  font-size: 1.2rem;
  animation: float 2s ease-in-out infinite;
  z-index: 1;
}
.hero-scroll:hover { color: var(--gold); }

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.about-visual { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.about-frame {
  position: relative;
  width: 260px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
  gap: 6px;
  border: 3px solid rgba(201,168,76,.3);
}
.about-avatar span { font-size: 1rem; color: var(--silver); letter-spacing: 2px; }
.frame-corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold);
  border-style: solid;
}
.frame-corner.tl { top: 10px; right: 10px; border-width: 2px 0 0 2px; border-right: none; border-bottom: none; }
.frame-corner.tr { top: 10px; left: 10px; border-width: 2px 2px 0 0; border-left: none; border-bottom: none; }
.frame-corner.bl { bottom: 10px; right: 10px; border-width: 0 0 2px 2px; border-right: none; border-top: none; }
.frame-corner.br { bottom: 10px; left: 10px; border-width: 0 2px 2px 0; border-left: none; border-top: none; }

.about-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
  min-width: 90px;
}
.stat-num {
  display: block;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}
.stat-lbl { display: block; font-size: .75rem; color: var(--text-mid); margin-top: 4px; }

.about-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

/* =============================================
   ARTISTS
   ============================================= */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.artist-card {
  background: var(--navy-mid);
  border: 1px solid rgba(168,184,208,.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  animation: fadeInUp .6s ease both;
  position: relative;
  overflow: hidden;
}
.artist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201,168,76,.05));
  pointer-events: none;
}
.artist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,.4);
  box-shadow: 0 12px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(201,168,76,.2);
}
.artist-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  border: 2px solid rgba(201,168,76,.3);
}
.artist-card:hover .artist-avatar { border-color: var(--gold); }
.artist-name {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.artist-specialty {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.artist-desc { font-size: .88rem; color: var(--silver); line-height: 1.6; }
.artist-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: .82rem;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.artist-card:hover .artist-cta { border-color: var(--gold); }

/* =============================================
   GALLERY
   ============================================= */
.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1px solid rgba(26,48,96,.25);
  color: var(--text-mid);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.gallery-grid {
  column-count: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow); }
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}
.gallery-placeholder i { font-size: 2rem; }
.gallery-caption {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  padding: 20px 14px 10px;
  color: var(--white);
  font-size: .85rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ===== Gallery Video ===== */
.gallery-video-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  pointer-events: none;
  transition: var(--transition);
}
.gallery-item:hover .gallery-video-badge { background: var(--gold); color: var(--navy); }
.gallery-video-embed { position: relative; width: 100%; aspect-ratio: 16/9; }
.gallery-video-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* Album count badge */
.gallery-count-badge {
  position: absolute;
  top: 8px;
  left: 10px;
  background: rgba(0,0,0,.68);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  line-height: 1.7;
  pointer-events: none;
}

/* ===== Album Modal ===== */
.album-modal {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-modal.hidden { display: none; }
.album-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.92);
}
.album-box {
  position: relative;
  z-index: 1;
  width: min(92vw, 920px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.album-close {
  position: absolute;
  top: -38px;
  left: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: .8;
  transition: opacity .2s;
}
.album-close:hover { opacity: 1; }
.album-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  max-height: 65vh;
  overflow: hidden;
  border-radius: 10px;
  background: #0a111e;
}
.album-main img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}
.album-main video {
  max-width: 100%;
  max-height: 65vh;
  border-radius: 10px;
  display: block;
}
.album-main iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 10px;
  display: block;
}
.album-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  width: 100%;
}
.album-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.album-arrow:hover { background: rgba(201,168,76,.35); border-color: var(--gold); }
.album-thumbs {
  flex: 1;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 4px 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.2) transparent;
}
.album-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 48px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: #0f2040;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s;
}
.album-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.album-thumb.active { border-color: var(--gold); }
.album-thumb-video { color: var(--gold); font-size: 1.3rem; }
.album-caption-line {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  margin-top: 8px;
  letter-spacing: .03em;
}

/* =============================================
   NEWS
   ============================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.news-card {
  background: var(--navy-mid);
  border: 1px solid rgba(168,184,208,.08);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  animation: fadeInUp .6s ease both;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.news-date {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.news-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-excerpt { font-size: .9rem; color: var(--silver); line-height: 1.7; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-intro {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 1rem;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border-right: 3px solid var(--gold);
}
.contact-item:hover { transform: translateX(-4px); box-shadow: var(--shadow); }
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-text { display: flex; flex-direction: column; gap: 2px; }
.ci-text span { font-size: .76rem; color: var(--text-mid); font-weight: 600; }
.ci-text strong { font-size: .95rem; color: var(--text-dark); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,48,96,.1);
}
textarea { resize: vertical; }
.form-success {
  text-align: center;
  padding: 48px 32px;
}
.form-success i { font-size: 3rem; color: #27ae60; margin-bottom: 16px; }
.form-success h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text-mid); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #060d1c;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(168,184,208,.1);
}
.footer-logo-main {
  display: block;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-sub { display: block; font-size: .75rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.footer-tagline { color: var(--silver); font-size: .9rem; font-style: italic; }
.footer-links h4, .footer-contact h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: var(--silver); font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: var(--silver); font-size: .9rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.footer-contact a { color: var(--silver); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact i { color: var(--gold); width: 16px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .82rem;
  color: rgba(168,184,208,.5);
}
.footer-credit {
  font-size: .78rem;
  color: rgba(168,184,208,.4);
}
.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.footer-credit a:hover { color: #fff; }
.admin-link {
  color: rgba(168,184,208,.3);
  font-size: .78rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.admin-link:hover { color: var(--gold); }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
}
.lb-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lb-close {
  position: absolute;
  top: -40px;
  left: 0;
  color: var(--white);
  font-size: 1.3rem;
  transition: var(--transition);
  z-index: 2;
}
.lb-close:hover { color: var(--gold); }
#lbImg { max-height: 80vh; border-radius: 8px; }
#lbCaption { color: var(--silver); margin-top: 10px; font-size: .9rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { flex-direction: row; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; left: 0; bottom: 0;
    background: rgba(6,13,28,.97);
    padding: 100px 32px 40px;
    gap: 8px;
    align-items: flex-start;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1.2rem; padding: 12px 0; }
  .lang-switcher { margin-top: 16px; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about-visual { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .artists-grid { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  .contact-form-wrap { padding: 24px 18px; }
  .btn { padding: 12px 24px; font-size: .9rem; }
}

/* =============================================
   MUSICIANS
   ============================================= */
.musicians-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.musician-card {
  background: var(--navy-mid);
  border: 1px solid rgba(168,184,208,.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  animation: fadeInUp .6s ease both;
}
.musician-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,.35);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.musician-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  overflow: hidden;
}
.musician-avatar img { width: 100%; height: 100%; object-fit: cover; }
.musician-name { font-family: 'Frank Ruhl Libre', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.musician-instrument { font-size: .82rem; color: var(--gold); font-weight: 600; letter-spacing: .5px; margin-bottom: 4px; }
.musician-cat {
  display: inline-block;
  font-size: .7rem;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(201,168,76,.15);
  color: var(--gold);
  margin-bottom: 8px;
}
.musician-desc { font-size: .82rem; color: var(--silver); line-height: 1.6; }

/* =============================================
   VIDEOS
   ============================================= */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  animation: fadeInUp .6s ease both;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
  overflow: hidden;
}
.video-frame iframe { width: 100%; height: 100%; border: none; }
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  color: rgba(255,255,255,.5);
}
.video-placeholder i { font-size: 2.5rem; color: var(--gold); }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  transition: var(--transition);
  cursor: pointer;
}
.video-play-btn i { font-size: 3rem; color: rgba(255,255,255,.9); transition: var(--transition); }
.video-play-btn:hover { background: rgba(0,0,0,.1); }
.video-play-btn:hover i { transform: scale(1.1); color: var(--gold); }
.video-info { padding: 14px 16px; }
.video-title { font-weight: 700; color: var(--navy); font-size: .95rem; margin-bottom: 4px; }
.video-artist { font-size: .8rem; color: var(--gold); font-weight: 600; }

/* =============================================
   CALENDAR
   ============================================= */
.calendar-wrap {
  background: var(--white);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-month-label {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.cal-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--cream-dark);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cal-arrow:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.cal-head {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-mid);
  padding: 6px 0;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: .85rem;
  color: var(--text-dark);
  position: relative;
  cursor: default;
  transition: var(--transition);
  gap: 2px;
}
.cal-day.other-month { color: #ccc; }
.cal-day.today { background: var(--cream-dark); font-weight: 700; }
.cal-day.has-event { cursor: pointer; }
.cal-day.has-event:hover { background: #f0f4fc; }
.cal-dots { display: flex; gap: 2px; flex-wrap: wrap; justify-content: center; }
.cal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.cal-dot.booked  { background: var(--gold); }
.cal-dot.pending { background: #3498db; }
.cal-dot.done    { background: #27ae60; }
.cal-event-tooltip {
  position: absolute;
  bottom: 110%;
  right: 50%;
  transform: translateX(50%);
  background: var(--navy);
  color: var(--white);
  font-size: .72rem;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.cal-day:hover .cal-event-tooltip { opacity: 1; }
.cal-legend {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
  flex-wrap: wrap;
}
.cal-leg-item { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--text-mid); }
.leg-dot { width: 10px; height: 10px; border-radius: 50%; }
.leg-dot.booked { background: var(--gold); }
.leg-dot.pending { background: #3498db; }

/* =============================================
   RECORDINGS
   ============================================= */
.recordings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.recording-card {
  background: var(--navy-mid);
  border: 1px solid rgba(168,184,208,.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition);
  animation: fadeInUp .6s ease both;
}
.recording-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-3px); }
.rec-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
}
.rec-title { font-family: 'Frank Ruhl Libre', serif; font-size: 1rem; font-weight: 700; color: var(--white); }
.rec-meta { font-size: .8rem; color: var(--silver); display: flex; gap: 12px; flex-wrap: wrap; }
.rec-meta span { display: flex; align-items: center; gap: 5px; }
.rec-desc { font-size: .85rem; color: var(--silver); line-height: 1.6; }
.rec-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  transition: var(--transition);
  align-self: flex-start;
}
.rec-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ---------- Artist Tabs ---------- */
.artist-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.artist-tab {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--silver);
  border: 1.5px solid rgba(201,168,76,.3);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.artist-tab:hover { border-color: var(--gold); color: var(--gold); }
.artist-tab.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ---------- Artist Profile Modal ---------- */
.ap-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ap-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}
.ap-box {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
}
.ap-close {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f4fc;
  color: var(--navy);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.ap-close:hover { background: #dde4f0; }
.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg,#1a4a8a,#0f2d60);
  color: var(--gold);
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-info h2 { font-family: 'Frank Ruhl Libre', serif; font-size: 1.4rem; color: var(--navy); }
.profile-label { color: var(--gold); font-size: .85rem; font-weight: 600; margin-top: 4px; }
.profile-desc { color: var(--text-mid); line-height: 1.7; font-size: .92rem; margin-bottom: 20px; }
.profile-section { margin-top: 24px; border-top: 1px solid #e8edf5; padding-top: 18px; }
.profile-section h4 { color: var(--navy); font-size: .95rem; margin-bottom: 14px; font-weight: 700; }
.profile-videos { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 12px; }
.profile-video-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #0a1628;
}
.profile-video-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.pvt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 2.2rem;
  color: rgba(255,255,255,.9);
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  transition: var(--transition);
}
.profile-video-thumb:hover .pvt-play { color: var(--gold); }
.pvt-title {
  padding: 6px 8px;
  font-size: .75rem;
  color: var(--silver-light);
  background: rgba(0,0,0,.7);
}
.profile-rec {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dotted #e8edf5;
}
.profile-rec:last-child { border-bottom: none; }

@media (max-width: 680px) {
  .videos-grid { grid-template-columns: 1fr; }
  .recordings-grid { grid-template-columns: 1fr; }
  .ap-box { padding: 20px; }
  .profile-videos { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  animation: fadeInUp .6s ease both;
  border-top: 3px solid var(--gold);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-quote { color: var(--gold); font-size: 1.8rem; line-height: 1; }
.testimonial-text {
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: .92rem; }
.testimonial-role { font-size: .78rem; color: var(--text-mid); margin-top: 2px; }

/* =============================================
   AUDIO PLAYER
   ============================================= */
.rec-audio {
  width: 100%;
  margin-top: 4px;
  border-radius: 8px;
  background: rgba(201,168,76,.07);
  padding: 8px;
}
.rec-audio audio {
  width: 100%;
  height: 38px;
  border-radius: 6px;
  accent-color: var(--gold);
}

/* =============================================
   GALLERY MASONRY RESPONSIVE
   ============================================= */
@media (max-width: 900px) { .gallery-grid { column-count: 2; } }
@media (max-width: 480px) { .gallery-grid { column-count: 1; } }

/* =============================================
   UNDER CONSTRUCTION PAGE
   ============================================= */
#constructionPage {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.uc-bg {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #060d1e 0%, #0f2040 45%, #1a1a2e 100%);
}
.uc-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
}
.uc-content {
  position: relative; z-index: 1;
  text-align: center; padding: 40px 24px;
  max-width: 560px; width: 100%;
  animation: ucFadeIn .9s ease both;
}
@keyframes ucFadeIn { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }

.uc-logo {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 36px;
}
.uc-logo-line { flex: 1; height: 1px; background: linear-gradient(to left, transparent, #c9a84c); max-width: 80px; }
.uc-logo-line:first-child { background: linear-gradient(to right, transparent, #c9a84c); }
.uc-logo-heb {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.05rem; font-weight: 700;
  color: #c9a84c; letter-spacing: 2px;
}
.uc-icon {
  font-size: 2.8rem; color: #c9a84c;
  margin-bottom: 20px; opacity: .9;
  animation: ucPulse 2.5s ease-in-out infinite;
}
@keyframes ucPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

.uc-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 2.6rem; font-weight: 900;
  color: #fff; margin: 0 0 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.uc-sub {
  font-size: .95rem; letter-spacing: 4px; text-transform: uppercase;
  color: #c9a84c; margin: 0 0 24px; font-weight: 500;
}
.uc-msg {
  font-size: 1rem; color: rgba(255,255,255,.65);
  line-height: 1.8; margin: 0 0 32px;
}
.uc-divider {
  width: 48px; height: 2px;
  background: linear-gradient(to left, transparent, #c9a84c, transparent);
  margin: 0 auto 28px;
}
.uc-contact { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.uc-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); font-size: .88rem;
  text-decoration: none; transition: color .25s;
  padding: 8px 16px; border: 1px solid rgba(201,168,76,.3); border-radius: 30px;
}
.uc-link:hover { color: #c9a84c; border-color: #c9a84c; }
.uc-link i { color: #c9a84c; font-size: .82rem; }
