/* === Loubavitch 92 Sud — Static v1 === */
:root {
  --blue: #1e5fdc;
  --blue-dark: #0e3fa6;
  --blue-darker: #0a2d7a;
  --navy: #0e2a5e;
  --cyan: #00a7d5;
  --cyan-light: #e6f6fb;
  --gold: #f5cf5c;
  --bg: #f7fafc;
  --white: #ffffff;
  --text: #1a2236;
  --text-soft: #5a6577;
  --border: #e6ebf2;
  --shadow: 0 8px 24px rgba(14, 42, 94, 0.08);
  --shadow-lg: 0 16px 48px rgba(14, 42, 94, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
body { font-size: 15px; }

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(30, 95, 220, 0.3);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 95, 220, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* === Topbar === */
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  padding: 6px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-left a, .topbar-left .lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.topbar-left a:hover { opacity: 1; color: var(--gold); }
.topbar-right {
  display: flex;
  gap: 6px;
}
.topbar-right a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
}
.topbar-right a:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

/* === Header === */
.header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(14, 42, 94, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
}
.logo img {
  height: 48px;
  width: auto;
}
.nav {
  flex: 1;
}
.nav ul {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav ul a {
  display: block;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.2s;
}
.nav ul a > i:first-child {
  margin-right: 6px;
  font-size: 12px;
  color: var(--blue);
  opacity: 0.7;
}
.nav ul a .chev {
  margin-left: 4px;
  font-size: 9px;
  opacity: 0.5;
  transition: transform 0.2s;
  color: inherit;
}
.nav ul a:hover {
  background: var(--cyan-light);
  color: var(--blue);
}
.nav ul a:hover > i:first-child { opacity: 1; }
.has-dropdown { position: relative; --mc: var(--blue); }
.has-dropdown:hover .chev { transform: rotate(180deg); }
.has-dropdown:hover > a { color: var(--mc); }

.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(14, 42, 94, 0.15);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s 0.18s;
  z-index: 200;
  border-top: 3px solid var(--mc);
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: var(--mc);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s;
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border-radius: 5px;
  white-space: nowrap;
  transition: all 0.15s;
}
.dropdown a > i:first-child {
  width: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--mc);
  margin: 0;
}
.dropdown a:hover {
  background: color-mix(in srgb, var(--mc) 8%, transparent);
  color: var(--mc);
}
.nav-highlight {
  background: linear-gradient(135deg, var(--gold), #f0b73a);
  color: var(--navy) !important;
}
.nav-highlight:hover {
  background: var(--gold) !important;
  transform: translateY(-1px);
}
.btn-don {
  padding: 12px 22px;
  font-size: 14px;
}
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
}

/* === Hero === */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(14, 42, 94, 0.85) 0%, rgba(30, 95, 220, 0.75) 100%),
    radial-gradient(circle at 70% 50%, var(--cyan) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: url('photos/complex.jpg') center right / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%,
    rgba(0,0,0,0.15) 25%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0.85) 100%);
  mask-image: linear-gradient(90deg,
    transparent 0%,
    rgba(0,0,0,0.15) 25%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0.85) 100%);
  mix-blend-mode: luminosity;
  opacity: 0.55;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(14,42,94,0.92) 0%,
    rgba(30,95,220,0.65) 35%,
    rgba(30,95,220,0.25) 70%,
    rgba(30,95,220,0.45) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(245, 207, 92, 0.12) 0%, transparent 35%);
}
.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 3;
  background: var(--bg);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,0 Q360,60 720,30 T1440,30 L1440,60 L0,60 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'><path d='M0,0 Q360,60 720,30 T1440,30 L1440,60 L0,60 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-text { max-width: 720px; }
.hero-pretitle {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4.6vw, 50px);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
  line-height: 1.05;
  padding-bottom: 6px;
}
.hero h1 .line-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineRise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero h1 .line-1 .line-inner { animation-delay: 0.25s; }
.hero h1 .line-2 .line-inner {
  animation-delay: 0.55s;
  font-size: 0.7em;
  font-weight: 700;
  margin-top: 4px;
  background: linear-gradient(90deg,
    var(--gold) 0%,
    #fff3b8 30%,
    var(--gold) 60%,
    #f0b73a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero h1 .line-2 .line-inner.shimmer {
  animation: lineRise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards,
             shimmer 4s linear 1.6s infinite;
}

@keyframes lineRise {
  to { transform: translateY(0); opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Hero secondary entrance */
.anim-fade-down {
  opacity: 0;
  transform: translateY(-12px);
  animation: fadeDown 0.7s ease-out 0.05s forwards;
}
.anim-fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out 0.95s forwards;
}
.anim-fade-up-late {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out 1.15s forwards;
}
@keyframes fadeDown {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 .line-inner,
  .anim-fade-down, .anim-fade-up, .anim-fade-up-late {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.hero p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 580px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* === Infobar (slim, sous le header) === */
.infobar {
  background: linear-gradient(90deg, #e6f6fb 0%, #fff8e7 50%, #e6f6fb 100%);
  border-bottom: 1px solid var(--border);
}
.infobar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 24px;
  flex-wrap: wrap;
}
.infobar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 24px;
  color: var(--text);
  transition: color 0.2s;
}
.infobar-item:hover { color: var(--blue); }
.infobar-item i {
  width: 30px; height: 30px;
  background: var(--white);
  color: var(--blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(30,95,220,0.18);
}
.infobar-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.15;
}
.infobar-item span {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 1px;
}
.infobar-sep {
  width: 1px;
  height: 30px;
  background: rgba(14,42,94,0.15);
}
.infobar-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(30,95,220,0.25);
  flex-shrink: 0;
}
@media (max-width: 800px) {
  .infobar-inner { gap: 8px; padding: 10px 16px; }
  .infobar-item { padding: 4px 8px; }
  .infobar-item span { display: none; }
  .infobar-sep { display: none; }
}
/* === Quickbar (legacy, no longer used) === */
.quickbar {
  display: none;
}
.quickbar-inner {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 22px;
  gap: 16px;
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
  border-right: 1px solid var(--border);
}
.quick-item:last-child { border-right: none; }
.quick-item i {
  width: 42px;
  height: 42px;
  background: var(--cyan-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.quick-item strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-bottom: 1px;
}
.quick-item span {
  color: var(--text-soft);
  font-size: 12px;
}

/* === Sections === */
.sections {
  padding: 70px 0 60px;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.eyebrow-light { color: var(--gold); }
.section-head h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 12px;
}
.section-head p {
  color: var(--text-soft);
  font-size: 15px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  display: block;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}
.card:hover .card-icon {
  transform: rotate(-6deg) scale(1.05);
}
.card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.card p {
  color: var(--text-soft);
  font-size: 13px;
  margin-bottom: 14px;
}
.card-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.card:hover .card-link { gap: 10px; }
.card-link-light { color: var(--white); }

/* === Don section === */
.don-section {
  background:
    linear-gradient(135deg, var(--blue) 0%, var(--blue-darker) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.don-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245, 207, 92, 0.1);
}
.don-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.don-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.don-text h2 {
  color: var(--white);
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 14px;
}
.don-text p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 22px;
  max-width: 540px;
}
.don-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.don-chip {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.don-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
}
.don-card i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 14px;
}
.don-card h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}
.don-card p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 16px;
}

/* === Newsletter === */
.newsletter {
  padding: 50px 0;
  background: var(--white);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.newsletter h2 {
  font-size: 22px;
  margin-bottom: 4px;
}
.newsletter p { font-size: 14px; }
.newsletter p {
  color: var(--text-soft);
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 11px 18px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: 14px;
  font-family: inherit;
  transition: border 0.2s;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--blue);
}

/* === Footer === */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 50px 0 0;
  font-size: 13px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}
.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-col p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 18px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-col ul li i {
  color: var(--gold);
  margin-top: 4px;
  font-size: 13px;
  flex-shrink: 0;
}
.footer-col ul a {
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.footer-col ul a:hover { opacity: 1; color: var(--gold); }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--blue);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}
.footer-bottom p {
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-credit a {
  color: var(--gold);
  font-weight: 700;
  transition: opacity 0.2s;
}
.footer-credit a:hover { opacity: 0.85; }

/* === Page hero (sub-pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 40px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(245, 207, 92, 0.1);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(22px, 3vw, 34px);
  margin: 10px 0 10px;
  position: relative;
}
.page-hero p {
  font-size: 14px;
  opacity: 0.9;
  max-width: 640px;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
  position: relative;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; opacity: 0.6; }

/* === Today widget === */
.today-widget {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}
.today-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.today-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.today-content { flex: 1; }
.today-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.today-dates {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.today-date strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.today-date span {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 1px;
}
.today-sep {
  color: var(--cyan);
  font-size: 18px;
}
.hebrew-text {
  font-family: 'Times New Roman', serif;
  font-size: 14px !important;
  color: var(--blue) !important;
  direction: rtl;
  unicode-bidi: embed;
}

/* === Converter === */
.converter-section {
  padding: 50px 0 70px;
}
.converter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.converter-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.converter-card:hover { box-shadow: var(--shadow-lg); }
.converter-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
}
.converter-num {
  width: 30px; height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}
.converter-head h2 {
  color: var(--white);
  font-size: 15px;
  margin: 0;
}
.converter-body {
  padding: 22px;
}
.field {
  display: block;
  margin-bottom: 14px;
}
.field > span {
  display: block;
  font-weight: 600;
  font-size: 11px;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.field input,
.field select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border 0.2s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
}
.field small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-soft);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.field-row .field { margin-bottom: 0; }
.converter-body .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.result {
  margin-top: 22px;
}
.result-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--cyan-light) 0%, #f0faff 100%);
  border: 2px solid var(--cyan);
  border-radius: var(--radius-sm);
}
.result-icon {
  width: 34px; height: 34px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.result-text { flex: 1; }
.result-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}
.result-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.result-text .hebrew-text {
  display: block;
  margin-top: 2px;
  font-size: 13px !important;
}
.result-error {
  padding: 14px 18px;
  background: #fef2f2;
  border: 2px solid #fca5a5;
  color: #b91c1c;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Info box */
.info-box {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.info-box > i {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.info-box h3 {
  font-size: 15px;
  margin-bottom: 6px;
}
.info-box p {
  color: var(--text-soft);
  font-size: 13px;
}

/* === Quotidien (cercles photos) === */
.quotidien-section {
  padding: 70px 0 50px;
  background: var(--bg);
  position: relative;
}
.quotidien-head { margin-bottom: 50px; }
.quotidien-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--navy);
  margin: 0;
}
.quotidien-title .qt-accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 50%, var(--blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: qtShimmer 5s linear infinite;
  padding: 0 4px;
}
.quotidien-title .qt-accent::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -4px;
  height: 6px;
  background: var(--gold);
  border-radius: 6px;
  z-index: -1;
  opacity: 0.7;
  transform: skewX(-8deg);
}
.quotidien-title .qt-script {
  display: block;
  margin-top: 8px;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.05em;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0;
  transform: rotate(-2deg);
  text-shadow: 2px 3px 0 rgba(14, 42, 94, 0.08);
}
@keyframes qtShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.quotidien-head p {
  margin-top: 14px;
  font-size: 16px;
}
.quotidien-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 22px;
}
.qcircle {
  --qbg: var(--blue);
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(14, 42, 94, 0.18);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
  background: var(--qbg);
}
.qcircle::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--qbg), color-mix(in srgb, var(--qbg) 60%, white));
  z-index: -1;
}
.qcircle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.qcircle-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 30px 24px;
  background: linear-gradient(0deg,
    color-mix(in srgb, var(--qbg) 90%, black) 0%,
    color-mix(in srgb, var(--qbg) 60%, transparent) 45%,
    transparent 70%);
  text-align: center;
  transition: background 0.3s;
}
.qcircle-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--white);
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
  max-width: 100%;
  word-break: break-word;
}
.qcircle-title small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  margin-top: 3px;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.qcircle:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 20px 40px rgba(14, 42, 94, 0.25);
}
.qcircle:hover img {
  transform: scale(1.12);
}
.qcircle:hover .qcircle-overlay {
  background: linear-gradient(0deg,
    color-mix(in srgb, var(--qbg) 95%, black) 0%,
    color-mix(in srgb, var(--qbg) 75%, transparent) 60%,
    color-mix(in srgb, var(--qbg) 30%, transparent) 100%);
}

@media (max-width: 900px) {
  .qcircle { width: 160px; height: 160px; }
  .qcircle-title { font-size: 12px; }
  .qcircle-overlay { padding: 24px 22px 18px; }
}
@media (max-width: 500px) {
  .qcircle { width: 140px; height: 140px; }
  .qcircle-title { font-size: 11px; }
  .qcircle-overlay { padding: 20px 18px 14px; }
  .quotidien-grid { gap: 18px 14px; }
}

/* === Paracha page === */
.paracha-hero {
  margin-top: -30px;
  position: relative;
  z-index: 5;
}
.paracha-hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  border-top: 4px solid var(--blue);
  position: relative;
  overflow: hidden;
}
.paracha-hero-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(30, 95, 220, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.paracha-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 22px;
  position: relative;
  flex-wrap: wrap;
}
.paracha-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-light);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.paracha-hero-card h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 4px;
}
.paracha-hebrew {
  font-size: 22px !important;
  margin-bottom: 8px !important;
  display: block;
}
.paracha-special {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  margin-top: 6px;
}
.paracha-date-card {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 200px;
}
.pdc-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-bottom: 4px;
}
.paracha-date-card strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.3;
}
.pdc-hdate {
  display: block;
  font-size: 11px;
  opacity: 0.85;
  margin-top: 4px;
}
.paracha-refs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
  position: relative;
}
.paracha-ref {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--cyan-light);
  border-radius: var(--radius-sm);
}
.paracha-ref:nth-child(2) { background: #fff8e7; }
.paracha-ref i {
  width: 36px; height: 36px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.paracha-ref:nth-child(2) i { background: var(--gold); color: var(--navy); }
.paracha-ref span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.paracha-ref strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.paracha-aliyot {
  margin-bottom: 22px;
  position: relative;
}
.paracha-aliyot h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--navy);
}
.paracha-aliyot h3 i { color: var(--gold); font-size: 13px; }
.paracha-aliyot ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
  list-style: none;
  padding: 0;
}
.paracha-aliyot li {
  font-size: 12px;
  color: var(--text);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.paracha-aliyot li em {
  color: var(--text-soft);
  font-style: normal;
  font-size: 11px;
}
.aliya-num {
  width: 22px; height: 22px;
  background: var(--cyan-light);
  color: var(--blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}
.paracha-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.paracha-calendar-section {
  padding: 60px 0 80px;
}
.paracha-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.paracha-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.25s;
  position: relative;
}
.paracha-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.paracha-card-active {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--white) 0%, #fff8e7 100%);
}
.paracha-card-holiday {
  border-color: #d97706;
  background: linear-gradient(135deg, var(--white) 0%, #fef3c7 100%);
}
.paracha-card-holiday .paracha-card-name { color: #b45309; }
.paracha-badge-holiday { background: #d97706; color: var(--white); }
.paracha-badge {
  position: absolute;
  top: -7px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
}
.paracha-card-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 1px;
}
.paracha-card-he {
  font-size: 13px !important;
  margin-bottom: 6px !important;
  color: var(--text-soft) !important;
  display: block;
}
.paracha-card-date {
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 4px;
}
.paracha-card-ref {
  font-size: 11px;
  color: var(--text-soft);
}

/* === Homepage Paracha widget === */
.paracha-widget-section {
  padding: 30px 0 0;
  background: linear-gradient(135deg, #f0f9ff 0%, var(--white) 100%);
}
.paracha-widget {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px 26px;
  border-top: 4px solid var(--blue);
  align-items: center;
}
.paracha-widget-intro h3 {
  font-size: 17px;
  margin-bottom: 2px;
}
.paracha-widget-intro .hebrew-text { font-size: 16px !important; margin-bottom: 8px; display: block; }
.paracha-widget-intro p {
  color: var(--text-soft);
  font-size: 12px;
  margin-bottom: 10px;
}
.paracha-widget-intro .eyebrow { margin-bottom: 6px; }
.paracha-widget-intro a {
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.paracha-widget-intro a:hover { gap: 10px; }
.paracha-widget-ref {
  padding: 14px 12px;
  background: var(--cyan-light);
  border-radius: var(--radius-sm);
  text-align: center;
}
.paracha-widget-ref:nth-child(3) { background: #fff8e7; }
.paracha-widget-ref i {
  font-size: 17px;
  color: var(--blue);
  margin-bottom: 6px;
}
.paracha-widget-ref:nth-child(3) i { color: var(--gold); }
.paracha-widget-ref .pwr-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.paracha-widget-ref strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

/* Active nav */
.nav ul a.active {
  background: var(--blue);
  color: var(--white) !important;
}

/* === Shabbat hero card (page horaires) === */
.shabbat-hero {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}
.shabbat-hero-card {
  background: linear-gradient(135deg, var(--white) 0%, #f0f9ff 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  border-top: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.shabbat-hero-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245, 207, 92, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.shabbat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-light);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.shabbat-parasha {
  font-size: clamp(20px, 2.6vw, 28px);
  margin-bottom: 18px;
  position: relative;
}
.shabbat-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.shabbat-time {
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 18px;
  border: 2px solid var(--border);
  position: relative;
  transition: all 0.3s;
}
.shabbat-time:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.shabbat-time-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 10px;
}
.shabbat-time:nth-child(2) .shabbat-time-icon {
  background: linear-gradient(135deg, var(--gold), #f0b73a);
  color: var(--navy);
}
.shabbat-time-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.shabbat-time strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.shabbat-time-date {
  display: block;
  font-size: 12px;
  color: var(--text-soft);
}
.shabbat-hero-loading,
.weeks-loading {
  text-align: center;
  padding: 30px;
  color: var(--text-soft);
  font-size: 16px;
  grid-column: 1 / -1;
}
.shabbat-hero-loading i,
.weeks-loading i {
  margin-right: 8px;
  color: var(--blue);
}

/* === 4 weeks ahead === */
.weeks-section {
  padding: 50px 0;
}
.weeks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.week-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.3s;
  position: relative;
}
.week-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.week-card-active {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--white) 0%, #f0f9ff 100%);
}
.week-parasha {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
  margin-bottom: 2px;
}
.week-date {
  font-size: 11px;
  color: var(--text-soft);
  margin-bottom: 12px;
  text-transform: capitalize;
}
.week-times {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.week-time {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--cyan-light);
  border-radius: var(--radius-sm);
}
.week-time:nth-child(2) {
  background: #fff8e7;
}
.week-time i {
  width: 26px; height: 26px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.week-time:nth-child(2) i {
  background: var(--gold);
  color: var(--navy);
}
.week-time span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.week-time strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.week-badge {
  position: absolute;
  top: -8px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
}

/* === Holidays === */
.holidays-section {
  padding: 0 0 60px;
}
.holidays-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.holiday-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  border-left: 3px solid var(--blue);
}
.holiday-item:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-lg);
}
.holiday-date {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  text-align: center;
  min-width: 56px;
  flex-shrink: 0;
}
.holiday-day {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}
.holiday-month {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-top: 1px;
}
.holiday-weekday {
  display: block;
  font-size: 9px;
  opacity: 0.7;
  text-transform: capitalize;
  margin-top: 2px;
}
.holiday-info { flex: 1; }
.holiday-info h3 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--navy);
}
.holiday-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.holiday-tag {
  background: var(--cyan-light);
  color: var(--blue);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.holiday-hdate {
  font-size: 11px;
  color: var(--text-soft);
}
.holiday-heb {
  font-size: 13px !important;
  color: var(--blue) !important;
}

/* === Homepage Shabbat widget === */
.shabbat-widget-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, var(--white) 100%);
}
.shabbat-widget {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 22px 26px;
  border-top: 4px solid var(--gold);
  align-items: center;
}
.shabbat-widget-intro h3 {
  font-size: 17px;
  margin-bottom: 2px;
}
.shabbat-widget-intro .eyebrow {
  margin-bottom: 6px;
}
.shabbat-widget-intro p {
  color: var(--text-soft);
  font-size: 12px;
  margin-bottom: 10px;
}
.shabbat-widget-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.shabbat-widget-link:hover { gap: 10px; }
.shabbat-widget-time {
  text-align: center;
  padding: 14px 12px;
  background: var(--cyan-light);
  border-radius: var(--radius-sm);
}
.shabbat-widget-time:nth-child(3) { background: #fff8e7; }
.shabbat-widget-time i {
  font-size: 17px;
  color: var(--blue);
  margin-bottom: 6px;
}
.shabbat-widget-time:nth-child(3) i { color: var(--gold); }
.shabbat-widget-time .swt-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.shabbat-widget-time strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  line-height: 1;
}
.shabbat-widget-time .swt-date {
  display: block;
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 3px;
  text-transform: capitalize;
}

/* === Responsive === */
@media (max-width: 1100px) {
  .nav ul { gap: 0; }
  .nav ul a { padding: 6px 9px; font-size: 13px; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: block; }
  .btn-don { padding: 10px 16px; font-size: 13px; }
  .quickbar-inner { grid-template-columns: 1fr; padding: 22px; }
  .quick-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
  .quick-item:last-child { border-bottom: none; padding-bottom: 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .don-inner { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .topbar-left { font-size: 12px; gap: 14px; }
  .converter-grid { grid-template-columns: 1fr; }
  .today-card { flex-direction: column; text-align: center; }
  .today-dates { justify-content: center; }
  .today-sep { transform: rotate(90deg); }
  .shabbat-times { grid-template-columns: 1fr; }
  .weeks-grid { grid-template-columns: repeat(2, 1fr); }
  .holidays-list { grid-template-columns: 1fr; }
  .shabbat-widget { grid-template-columns: 1fr; text-align: center; }
  .paracha-widget { grid-template-columns: 1fr; text-align: center; }
  .paracha-refs { grid-template-columns: 1fr; }
  .paracha-aliyot ul { grid-template-columns: 1fr; }
  .paracha-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .weeks-grid { grid-template-columns: 1fr; }
  .paracha-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 80px 0 100px; }
  .hero-photo { width: 100%; opacity: 0.25; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .topbar-left a:not(:first-child) { display: none; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
}
