/* SynagogaX v1.1 — Art Deco (Bootstrap 5 companion) */
:root {
  --navy: #0b1f33;
  --gold: #d4af37;
  --ivory: #f6f3ea;
  --ink: #1f2024;
  --muted: #757983;
  --line: #e7dcc1;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

html,
body {
  background: var(--ivory);
  color: var(--ink);
}

a {
  color: var(--gold);
}

a:hover {
  color: #b9972f
}

.navbar {
  background: var(--navy);
}

.navbar .navbar-brand,
.navbar .nav-link {
  color: #fff !important
}

.navbar .nav-link.active {
  color: var(--gold) !important
}

.hero {
  background: radial-gradient(1200px 600px at 10% 0%, rgba(212, 175, 55, .12), transparent 60%),
    linear-gradient(180deg, #0c2236 0%, #0b1f33 60%, #0b1f33 100%);
  color: #fff;
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero .deco-line {
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--gold), var(--gold) 20px, transparent 20px, transparent 40px);
  opacity: .6;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: .5px;
  font-size: clamp(32px, 4vw, 58px);
}

.hero p.lead {
  color: #e6edf4;
  max-width: 760px
}

.btn-gold {
  background: var(--gold);
  color: #111;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  box-shadow: var(--shadow)
}

.btn-gold:hover {
  filter: brightness(.95)
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: #fff;
  border-radius: 999px;
  min-height: 44px;
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, .15);
  color: #fff
}

.section {
  padding: 72px 0;
}

.card-deco {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-deco .card-header {
  background: linear-gradient(180deg, #fff, #faf7ee);
  border-bottom: 1px solid var(--line)
}

.badge-soft {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: .35rem .7rem
}

.kv {
  gap: .5rem
}

.figure-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line)
}

.figure-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover
}

.footer {
  background: #0e2235;
  color: #cfd8df;
  padding: 40px 0;
  border-top: 4px double var(--gold)
}

.footer a {
  color: #cfd8df
}

.footer a:hover {
  color: #fff
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr)
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr
  }
}

.form-control,
.form-select,
textarea {
  border-radius: 12px
}

.notice {
  display: none
}

.notice.show {
  display: block
}

.hr-gold {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

/* v1.1 additions */
.section-alt-ivory {
  background: var(--ivory);
}

.section-alt-white {
  background: #ffffff;
}

.section-alt-navy {
  background: var(--navy);
  color: #e6edf4;
}

.section-alt-navy a {
  color: var(--gold)
}

.section-tight {
  padding: 48px 0
}

.hero .lead strong {
  color: #fff
}

.deco-sep {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px 0 6px 0;
}

.footer .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  margin-left: 8px;
}

.footer .social a:hover {
  background: rgba(255, 255, 255, .08)
}

/* refresh v1.1 */