/* ============================================================
   SarahLingua v2 – Design System
   Damascus-Inspired Premium Arabic Language School
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap");

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Primary – Royal Purple */
  --purple: #69159e;
  --purple-mid: #7d22b8;
  --purple-light: rgba(105, 21, 158, 0.12);
  --purple-pale: rgba(105, 21, 158, 0.06);

  /* Accent – Amber Gold */
  --gold: #d4883a;
  --gold-light: #e8a060;
  --gold-pale: #f5e0c5;
  --gold-deep: #aa6620;

  --deep-blue: #1a2e4a;
  --blue-mid: #2d4a6b;
  --blue-light: #4a7fa5;
  --beige: #f7f1e8;
  --beige-dark: #ede3d4;
  --brown: #7a5c3a;
  --brown-light: #a07850;
  --cream: #fdfaf5;
  --warm-white: #fffdf9;
  --text-dark: #1c1410;
  --text-mid: #4a3728;
  --text-soft: #7a6555;
  --text-muted: #a89585;
  --border: rgba(105, 21, 158, 0.15);
  --shadow-warm: rgba(105, 21, 158, 0.1);
  --shadow-deep: rgba(26, 46, 74, 0.14);

  --font-arabic: "Amiri", "Traditional Arabic", serif;
  --font-display: "Cormorant Garamond", "Palatino Linotype", serif;
  --font-body: "Jost", "Helvetica Neue", sans-serif;

  --space-xs: 0.3rem;
  --space-sm: 0.6rem;
  --space-md: 1rem;
  --space-lg: 1.6rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease-out);

  --max-width: 1240px;
  --nav-height: 78px;

  /* Islamic star pattern (SVG encoded) */
  --pattern-star: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cdefs%3E%3Cstyle%3E.s%7Bfill:none;stroke:rgba(105,21,158,0.22);stroke-width:0.9%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(40,40)'%3E%3Cpolygon class='s' points='0,-26 6.1,-8.4 24.7,-8.4 9.9,3.2 15.4,22.1 0,11.1 -15.4,22.1 -9.9,3.2 -24.7,-8.4 -6.1,-8.4'/%3E%3Cpolygon class='s' points='0,-17 4,-5.5 16.2,-5.5 6.5,2.1 10.1,14.5 0,7.3 -10.1,14.5 -6.5,2.1 -16.2,-5.5 -4,-5.5'/%3E%3Ccircle class='s' cx='0' cy='0' r='4.5'/%3E%3C/g%3E%3Cg transform='translate(0,0)'%3E%3Ccircle class='s' cx='0' cy='0' r='2.2'/%3E%3C/g%3E%3Cg transform='translate(80,0)'%3E%3Ccircle class='s' cx='0' cy='0' r='2.2'/%3E%3C/g%3E%3Cg transform='translate(0,80)'%3E%3Ccircle class='s' cx='0' cy='0' r='2.2'/%3E%3C/g%3E%3Cg transform='translate(80,80)'%3E%3Ccircle class='s' cx='0' cy='0' r='2.2'/%3E%3C/g%3E%3C/svg%3E");

  --pattern-star-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cdefs%3E%3Cstyle%3E.s%7Bfill:none;stroke:rgba(105,21,158,0.12);stroke-width:0.9%7D%3C/style%3E%3C/defs%3E%3Cg transform='translate(40,40)'%3E%3Cpolygon class='s' points='0,-26 6.1,-8.4 24.7,-8.4 9.9,3.2 15.4,22.1 0,11.1 -15.4,22.1 -9.9,3.2 -24.7,-8.4 -6.1,-8.4'/%3E%3Cpolygon class='s' points='0,-17 4,-5.5 16.2,-5.5 6.5,2.1 10.1,14.5 0,7.3 -10.1,14.5 -6.5,2.1 -16.2,-5.5 -4,-5.5'/%3E%3Ccircle class='s' cx='0' cy='0' r='4.5'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── Reset ─────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 19px;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
}
ul,
ol {
  list-style: none;
}

/* ── RTL Support ───────────────────────────────────────────── */
[dir="rtl"],
.rtl {
  font-family: var(--font-arabic);
  letter-spacing: 0;
}
[dir="rtl"] .nav__links {
  flex-direction: row-reverse;
}
[dir="rtl"] .hero__cta {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer__grid {
  direction: rtl;
}

/* ── Typography ────────────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.22;
  color: var(--purple);
}
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.22;
  color: var(--deep-blue);
}
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5 {
  font-family: var(--font-arabic);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
}
h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}
h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}
h4 {
  font-size: 1.35rem;
}
p {
  color: var(--text-mid);
  font-size: 1.1rem;
  line-height: 1.85;
}

/* ── Islamic Pattern Backgrounds ──────────────────────────── */
.pattern-bg {
  background-color: var(--deep-blue);
  background-image: var(--pattern-star-dark);
}

.pattern-light {
  background-color: var(--beige);
  background-image: var(--pattern-star);
}

/* Full density pattern (like uploaded image) */
.pattern-dense {
  position: relative;
  overflow: hidden;
}
.pattern-dense::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pattern-star);
  background-size: 48px 48px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

/* ── Gold Divider ──────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(105, 21, 158, 0.25),
    transparent
  );
}
.divider__star {
  width: 30px;
  height: 30px;
  fill: var(--gold);
  flex-shrink: 0;
}
.divider__stars {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.divider__star--sm {
  width: 18px;
  height: 18px;
  opacity: 0.65;
}
.stars-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto var(--space-lg);
}
.divider .stars-divider {
  margin: 0;
}

/* ── Section Label ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}
@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px var(--shadow-warm);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(105, 21, 158, 0.4);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--deep-blue);
  color: var(--gold-light);
  border: 1px solid rgba(105, 21, 158, 0.3);
}
.btn-dark:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.5rem 0.85rem;
  font-size: 0.75rem;
}
.btn-lg {
  padding: 1.15rem 2.8rem;
  font-size: 1.1rem;
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-height);
  background: rgba(253, 250, 245, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled {
  box-shadow: 0 4px 40px var(--shadow-deep);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}
.nav__logo-img {
  height: calc(var(--nav-height) - 10px);
  width: auto;
  display: block;
  transition: transform var(--transition);
}
.nav__logo:hover .nav__logo-img {
  transform: scale(1.04);
}
.nav__links {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: var(--space-xl);
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
  padding: 4px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}
.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}
.nav__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--beige);
  border-radius: var(--radius-full);
  padding: 3px;
  border: 1px solid var(--border);
}
.nav__lang-btn {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  transition: all 0.2s;
}
.nav__lang-btn:hover {
  color: var(--gold);
}
.nav__lang-btn.active {
  background: var(--gold);
  color: #fff;
  pointer-events: none;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav__burger:hover {
  background: var(--beige);
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-blue);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
  box-shadow: 0 12px 48px var(--shadow-deep);
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 899;
  animation: slideDown 0.3s var(--ease-out);
}
.nav__mobile.open {
  display: flex;
}
.nav__mobile .nav__link {
  font-size: 1.05rem;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--beige-dark);
}
.nav__mobile .nav__link:last-of-type {
  border: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

/* ── Nav Dropdowns ─────────────────────────────────────────── */
.nav__has-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
/* Invisible bridge fills the 14px gap so hover isn't lost mid-travel */
.nav__has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 14px;
}
.nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  cursor: pointer;
  height: 100%;
  padding: 0;
  position: relative;
  transition: color var(--transition);
}
.nav__dropdown-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav__dropdown-btn:hover,
.nav__has-dropdown:hover .nav__dropdown-btn {
  color: var(--gold);
}
.nav__dropdown-btn:hover::after,
.nav__has-dropdown:hover .nav__dropdown-btn::after {
  transform: scaleX(1);
}
.nav__dropdown-caret {
  width: 9px;
  height: 9px;
  transition: transform 0.25s var(--ease-out);
  flex-shrink: 0;
}
.nav__has-dropdown:hover .nav__dropdown-caret {
  transform: rotate(180deg);
}
.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px var(--shadow-deep);
  min-width: 180px;
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition:
    opacity 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
  z-index: 1000;
}
.nav__has-dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.nav__dropdown-item:hover {
  color: var(--gold);
  background: var(--beige);
}

/* Mobile nav dropdowns */
.nav__mobile-group {
  border-bottom: 1px solid var(--beige-dark);
}
.nav__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: var(--space-sm) 0;
  cursor: pointer;
  transition: color var(--transition);
}
.nav__mobile-toggle:hover {
  color: var(--gold);
}
.nav__mobile-toggle .nav__dropdown-caret {
  width: 10px;
  height: 10px;
  transition: transform 0.25s;
}
.nav__mobile-toggle[aria-expanded="true"] .nav__dropdown-caret {
  transform: rotate(180deg);
}
.nav__mobile-submenu {
  display: none;
  padding-left: 1rem;
  padding-bottom: 0.4rem;
}
.nav__mobile-submenu.open {
  display: block;
}
.nav__link--sub {
  font-size: 0.95rem;
  color: var(--text-soft);
  padding: 6px 0;
  display: block;
  border: none !important;
  transition: color var(--transition);
}
.nav__link--sub:hover {
  color: var(--gold);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      140deg,
      rgba(26, 46, 74, 0.93) 0%,
      rgba(45, 74, 107, 0.87) 45%,
      rgba(122, 92, 58, 0.78) 100%
    ),
    url("../images/hero-bg.jpg") center/cover no-repeat;
}
/* Dense Islamic pattern overlay on hero */
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: var(--pattern-star-dark);
  background-size: 60px 60px;
  opacity: 0.7;
}
/* Animated rotating star ornament */
.hero__ornament {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 380px;
  opacity: 0.06;
  animation: heroOrnamentSpin 40s linear infinite;
  pointer-events: none;
}
.hero__ornament-inner {
  position: absolute;
  inset: 40px;
  opacity: 0.5;
  animation: heroOrnamentSpin 20s linear infinite reverse;
}
@keyframes heroOrnamentSpin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--gold-light);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero__eyebrow::before {
  content: "";
  width: 36px;
  height: 1.5px;
  background: var(--gold-light);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}
[dir="rtl"] .hero__title {
  font-family: var(--font-arabic);
}
.hero__title span {
  color: var(--gold-light);
  font-style: italic;
}
.hero__subtitle {
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
  line-height: 1.75;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}
@media (min-width: 1024px) {
  .hero__scroll {
    display: flex;
  }
}
.hero__sound-btn {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  padding: 0.65rem 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-family: var(--font-body);
}
.hero__sound-btn:hover {
  background: rgba(105, 21, 158, 0.22);
  color: var(--gold-light);
  border-color: rgba(105, 21, 158, 0.4);
}
.hero__sound-btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
/* Sound wave animation */
.sound-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 16px;
}
.sound-wave span {
  display: block;
  width: 2px;
  background: currentColor;
  border-radius: 2px;
  animation: soundWave 0.9s ease-in-out infinite;
}
.sound-wave span:nth-child(1) {
  height: 4px;
  animation-delay: 0s;
}
.sound-wave span:nth-child(2) {
  height: 10px;
  animation-delay: 0.1s;
}
.sound-wave span:nth-child(3) {
  height: 14px;
  animation-delay: 0.2s;
}
.sound-wave span:nth-child(4) {
  height: 8px;
  animation-delay: 0.3s;
}
.sound-wave span:nth-child(5) {
  height: 4px;
  animation-delay: 0.4s;
}
.sound-wave.muted span {
  animation: none;
  height: 3px !important;
  opacity: 0.4;
}
@keyframes soundWave {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.35);
  }
}

/* ── Section ───────────────────────────────────────────────── */
.section {
  padding: var(--space-3xl) 0;
}
.section--cream {
  background: var(--cream);
}
.section--beige {
  background: var(--beige);
}
.section--white {
  background: var(--warm-white);
}
.section--dark {
  background: var(--deep-blue);
}
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}
.section__title {
  margin-bottom: var(--space-md);
}
.section__sub {
  font-size: 1.15rem;
  color: var(--text-soft);
}

/* ── Cards ─────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: var(--space-xl);
}
.card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 64px var(--shadow-warm);
  border-color: var(--gold-light);
}
.card__thumb {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 5rem;
}
.card__thumb-bg {
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image: var(--pattern-star-dark);
  opacity: 0.8;
}
.card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--gold);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  z-index: 1;
}
.card__body {
  padding: var(--space-lg) var(--space-xl);
}
.card__level {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--deep-blue);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}
[dir="rtl"] .card__title {
  font-family: var(--font-arabic);
}
.card__tagline {
  font-size: 1.02rem;
  color: var(--text-soft);
  margin-bottom: var(--space-lg);
  font-style: italic;
}
.card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--beige-dark);
}
.card__topic-tag {
  background: var(--gold-pale);
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(105, 21, 158, 0.25);
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.card__footer--stack {
  flex-direction: column;
  align-items: stretch;
}
.card__footer--stack .btn-ornate,
.card__footer--stack .btn {
  width: 100%;
  justify-content: center;
}

/* ── Features / Pillars ────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.feature {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--warm-white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--brown-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 0 0 4px 4px;
}
.feature:hover::before {
  transform: scaleX(1);
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px var(--shadow-warm);
}
.feature__icon {
  width: 80px;
  height: 80px;
  background: var(--gold-pale);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  transition: all var(--transition);
  font-size: 2.2rem;
}
.feature:hover .feature__icon {
  background: linear-gradient(135deg, var(--gold), var(--brown-light));
  transform: scale(1.08) rotate(5deg);
}
.feature__title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--deep-blue);
  margin-bottom: var(--space-sm);
}
.feature__text {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.8;
}
@media (max-width: 800px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* ── About Strip ───────────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}
.about-strip__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-strip__visual-inner {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.about-strip__gold-frame {
  position: absolute;
  inset: -10px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius-xl) + 10px);
  opacity: 0.3;
  pointer-events: none;
  animation: framePulse 3s ease-in-out infinite;
}
@keyframes framePulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}
.about-strip__badge {
  position: absolute;
  bottom: var(--space-xl);
  right: calc(-1 * var(--space-lg));
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 10px 40px var(--shadow-warm);
  text-align: center;
  z-index: 2;
}
.about-strip__badge .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-strip__badge .label {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 3px;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: var(--space-lg);
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-mid);
}
.about-point::before {
  content: "✦";
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 860px) {
  .about-strip {
    grid-template-columns: 1fr;
  }
  .about-strip__badge {
    right: var(--space-xl);
  }
}

/* ── Newsletter ────────────────────────────────────────────── */
.newsletter {
  text-align: center;
}
.newsletter__inner {
  max-width: 580px;
  margin: 0 auto;
}
.newsletter__form {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 7px 7px 7px var(--space-lg);
  box-shadow: 0 4px 28px var(--shadow-warm);
  transition: border-color 0.2s;
}
.newsletter__form:focus-within {
  border-color: var(--gold);
}
.newsletter__input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  color: var(--text-dark);
}
.newsletter__input::placeholder {
  color: var(--text-muted);
}
@media (max-width: 500px) {
  .newsletter__form {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: var(--space-md);
  }
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--deep-blue);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-3xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}
.footer__pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: var(--pattern-star-dark);
  background-size: 64px 64px;
  pointer-events: none;
}
.footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  z-index: 1;
}
.footer__tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.52);
  max-width: 290px;
  line-height: 1.8;
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: var(--space-lg);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer__links a {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--gold-light);
}
.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.9;
}
.footer__social a svg {
  width: 48px;
  height: 48px;
}
.footer__social a:hover {
  opacity: 1;
  transform: scale(1.1);
}
.footer__social a[aria-label="Instagram"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}
.footer__social a[aria-label="LinkedIn"] {
  background: #0077b5;
  color: #fff;
}
.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gold-light);
}
.footer__bottom p {
  color: var(--gold-light);
  font-size: inherit;
}
.footer__langs {
  display: flex;
  gap: var(--space-sm);
}
.footer__langs a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
  font-size: 0.82rem;
}
.footer__langs a:hover,
.footer__langs a.active {
  color: var(--gold-light);
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}
@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

/* ── Flash Messages ────────────────────────────────────────── */
.flash {
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: flashSlide 0.4s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.flash--success {
  background: #f0faf4;
  border: 1px solid #6fcf97;
  color: #1a6b3c;
}
.flash--error {
  background: #fff5f5;
  border: 1px solid #f28585;
  color: #8b1a1a;
}
.flash--info {
  background: #f0f4ff;
  border: 1px solid #85a0f2;
  color: #1a2b6b;
}
@keyframes flashSlide {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-lg);
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--warm-white);
  color: var(--text-dark);
  font-size: 1rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(105, 21, 158, 0.12);
}
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero--dark {
  background:
    linear-gradient(
      140deg,
      rgba(26, 46, 74, 0.88) 0%,
      rgba(45, 74, 107, 0.82) 50%,
      rgba(122, 92, 58, 0.72) 100%
    ),
    url("../images/hero-bg.jpg") center/cover no-repeat;
}
.page-hero--dark h1 {
  color: #fff;
}
.page-hero--dark p {
  color: rgba(255, 255, 255, 0.82);
}
.page-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: var(--pattern-star-dark);
  background-size: 58px 58px;
  opacity: 0.7;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.page-hero__title {
  margin-bottom: var(--space-md);
}
.page-hero__sub {
  font-size: 1.12rem;
  max-width: 640px;
  margin: 0 auto;
}

/* Decorative border line for page heros */
.page-hero--dark .page-hero__border {
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ── Auth Cards ────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl)
    var(--space-xl);
  background: var(--beige);
  position: relative;
  overflow: hidden;
}
.auth-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pattern-star);
  background-size: 52px 52px;
}
.auth-card {
  position: relative;
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: var(--space-2xl);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 28px 80px var(--shadow-warm);
}
.auth-card__logo {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.auth-card__logo img {
  height: 72px;
  margin: 0 auto var(--space-md);
}
.auth-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* ── Workshop Intro Block ──────────────────────────────────── */
.workshop-intro {
  background: var(--deep-blue);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}
.workshop-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pattern-star-dark);
  background-size: 48px 48px;
}
.workshop-intro__content {
  position: relative;
  z-index: 1;
}
.workshop-intro__title {
  color: #fff;
  margin-bottom: var(--space-sm);
}
.workshop-intro__tagline {
  color: var(--gold-light);
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
}
.workshop-intro__topics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.workshop-intro__topic {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(105, 21, 158, 0.3);
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
}
.workshop-intro__topic::before {
  content: "• ";
  color: var(--gold-light);
}

/* ── Quote / Testimonial ───────────────────────────────────── */
.quote-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-2xl) 0;
}
.quote-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-style: italic;
  color: var(--deep-blue);
  line-height: 1.55;
  margin-bottom: var(--space-lg);
}
.quote-block__author {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.contact-info__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}
.contact-info__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.contact-info__value {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ── About Page ────────────────────────────────────────────── */
.about-story {
  max-width: 820px;
  margin: 0 auto;
}
.about-story p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: var(--space-lg);
}
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  font-style: italic;
  color: var(--deep-blue);
  border-left: 4px solid var(--gold);
  padding-left: var(--space-xl);
  margin: var(--space-2xl) 0;
  line-height: 1.5;
}
[dir="rtl"] .pull-quote {
  border-left: none;
  border-right: 4px solid var(--gold);
  padding-left: 0;
  padding-right: var(--space-xl);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.value-item {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--warm-white);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow-warm);
  border-color: var(--gold-light);
}
.value-item__icon {
  font-size: 2.4rem;
  margin-bottom: var(--space-md);
}
.value-item__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin-bottom: var(--space-sm);
}
.value-item__text {
  font-size: 0.93rem;
  color: var(--text-soft);
}

/* ── Course Detail ─────────────────────────────────────────── */
.course-detail {
  max-width: 860px;
  margin: 0 auto;
}
.course-detail__hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
}
.course-detail__hero-bg {
  position: absolute;
  inset: 0;
  background-size: 48px 48px;
  background-image: var(--pattern-star-dark);
}
.course-detail__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: var(--space-lg) 0;
}
.course-detail__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.9;
  white-space: pre-line;
}

/* ── Stats Row ─────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
  margin: var(--space-2xl) 0;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat__label {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-top: 4px;
}
@media (max-width: 640px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* ── Admin ─────────────────────────────────────────────────── */
.admin-wrap {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  min-height: 100vh;
  background: var(--beige);
}
.admin-topbar {
  background: var(--deep-blue);
  color: var(--gold-light);
  padding: var(--space-sm) var(--space-xl);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.admin-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.admin-table th {
  text-align: left;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 2px solid var(--border);
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.admin-table td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--beige-dark);
  color: var(--text-dark);
}
.admin-table tr:hover td {
  background: var(--beige);
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s var(--ease-out),
    transform 0.75s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.22s;
}
.reveal-delay-3 {
  transition-delay: 0.34s;
}
.reveal-delay-4 {
  transition-delay: 0.46s;
}

/* Particle / star burst */
@keyframes starBurst {
  0% {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1.5) rotate(180deg);
    opacity: 0;
  }
}
.star-burst {
  position: fixed;
  pointer-events: none;
  animation: starBurst 0.8s var(--ease-out) forwards;
  z-index: 9999;
  fill: var(--gold);
  width: 32px;
  height: 32px;
}

/* ── Utilities ─────────────────────────────────────────────── */
.text-gold {
  color: var(--gold);
}
.text-center {
  text-align: center;
}
.mt-sm {
  margin-top: var(--space-sm);
}
.mt-md {
  margin-top: var(--space-md);
}
.mt-lg {
  margin-top: var(--space-lg);
}
.mt-xl {
  margin-top: var(--space-xl);
}
.mb-md {
  margin-bottom: var(--space-md);
}
.mb-lg {
  margin-bottom: var(--space-lg);
}
.mb-xl {
  margin-bottom: var(--space-xl);
}
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}
@media (max-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 2.8rem;
  }
  .hero__ornament {
    display: none;
  }
  .hero__sound-btn {
    bottom: var(--space-lg);
    right: var(--space-lg);
  }
  .about-strip {
    grid-template-columns: 1fr;
  }
  .about-strip__badge {
    right: var(--space-xl);
  }
}

/* ── Smooth scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--beige);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

/* ── Selection ─────────────────────────────────────────────── */
::selection {
  background: var(--gold-pale);
  color: var(--brown);
}

/* ============================================================
   ADDITIONS v2.1 – Pattern image, ornate button, lang bar,
   WhatsApp FAB, course images, enroll form
   ============================================================ */

/* ── Language Top Bar ──────────────────────────────────────── */
/* ── Language FAB ──────────────────────────────────────────── */
.lang-fab {
  position: fixed;
  bottom: calc(2rem + 60px + 12px);
  right: 2rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lang-fab__btn {
  width: 60px;
  height: 60px;
  background: var(--deep-blue);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 28px rgba(26, 46, 74, 0.4);
  transition: all 0.3s var(--ease-spring);
  border: none;
  cursor: pointer;
  gap: 3px;
}
.lang-fab__btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.lang-fab__current {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
}
.lang-fab__btn:hover {
  transform: scale(1.1);
  background: var(--gold);
  box-shadow: 0 6px 24px rgba(105, 21, 158, 0.45);
}
.lang-fab__options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
}
.lang-fab__options.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-fab__option {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--deep-blue);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 14px rgba(26, 46, 74, 0.35);
  transition: all 0.2s var(--ease-spring);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.lang-fab__option:hover {
  background: var(--blue-mid);
  color: #fff;
  transform: scale(1.12);
}
.lang-fab__option.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold-light);
  pointer-events: none;
}

/* ── Arabic Pattern Image Sections ────────────────────────── */
/* Replaces SVG pattern, uses the uploaded PNG as overlay */
.arabic-pattern-section {
  position: relative;
  overflow: hidden;
}
.arabic-pattern-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/arabic_pattern.png");
  background-size: 320px 320px;
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  filter: sepia(1) saturate(4) hue-rotate(255deg);
}
.arabic-pattern-section > * {
  position: relative;
  z-index: 1;
}

/* Dark variant for dark backgrounds */
.arabic-pattern-dark {
  position: relative;
  overflow: hidden;
}
.arabic-pattern-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/arabic_pattern.png");
  background-size: 280px 280px;
  background-repeat: repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  filter: invert(1);
}
.arabic-pattern-dark > .container,
.arabic-pattern-dark > .newsletter__inner,
.arabic-pattern-dark > * {
  position: relative;
  z-index: 1;
}

/* Hero pattern overlay using uploaded image */
.hero__pattern-img {
  position: absolute;
  inset: 0;
  background-image: url("../images/arabic_pattern.png");
  background-size: 260px 260px;
  background-repeat: repeat;
  opacity: 0.06;
  filter: invert(1);
}

/* Footer uses uploaded pattern */
.footer__pattern-overlay {
  background-image: url("../images/arabic_pattern.png") !important;
  background-size: 220px 220px !important;
  background-repeat: repeat !important;
  opacity: 0.07 !important;
  filter: invert(1);
}

/* ── Ornate Primary Button (uses primary_button.png) ──────── */
.btn-ornate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  position: relative;
  background-image: url("../images/primary_button.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  padding: 0.85rem 3.2rem;
  min-width: 200px;
  min-height: 58px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease-out),
    filter 0.25s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-ornate:hover {
  transform: scale(1.04) translateY(-2px);
  filter: brightness(1.05) drop-shadow(0 8px 24px rgba(160, 114, 42, 0.4));
  color: var(--brown);
}
.btn-ornate:active {
  transform: scale(0.98);
}
.btn-ornate.btn-sm {
  padding: 0.55rem 1.3rem;
  min-width: unset;
  min-height: 44px;
  font-size: 0.88rem;
}
.btn-ornate.btn-lg {
  padding: 1rem 3.8rem;
  min-width: 240px;
  min-height: 66px;
  font-size: 1.15rem;
}

/* ── Course Card with Image ────────────────────────────────── */
.card__course-img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  background: linear-gradient(145deg, #f5e6c8 0%, #ede3d4 100%);
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.card:hover .card__course-img {
  transform: scale(1.04);
}

/* Wrapper keeps overflow hidden during scale */
.card__thumb--img {
  overflow: hidden;
  background: linear-gradient(145deg, #f5e6c8, #ede3d4);
}

/* ── Enroll / Registration Form Page ──────────────────────── */
.enroll-page {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-3xl);
  background: var(--beige);
  min-height: 100vh;
}
.enroll-hero {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.enroll-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  margin: 0 auto var(--space-lg);
}
.enroll-hero__badge img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}
.enroll-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: 0 24px 72px var(--shadow-warm);
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
}
.enroll-card__header {
  padding: var(--space-xl) var(--space-2xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  border-bottom: 1px solid var(--beige-dark);
  position: relative;
  overflow: hidden;
}
.enroll-card__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/arabic_pattern.png");
  background-size: 180px;
  opacity: 0.05;
}
.enroll-card__header-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.enroll-card__header-text {
  position: relative;
  z-index: 1;
}
.enroll-card__course-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.enroll-card__course-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.2;
}
.enroll-card__body {
  padding: var(--space-2xl);
}
.enroll-success {
  text-align: center;
  padding: var(--space-2xl);
}
.enroll-success__icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

/* ── WhatsApp FAB ──────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  transition: all 0.3s var(--ease-spring);
  text-decoration: none;
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
}
.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}
.whatsapp-fab__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--deep-blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all 0.25s var(--ease-out);
}
.whatsapp-fab__tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--deep-blue);
  border-right: none;
}
.whatsapp-fab:hover .whatsapp-fab__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse ring around WhatsApp button */
.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* ── Override old btn-primary with ornate look where desired ─ */
/* Keep .btn-primary as fallback, add .btn-ornate everywhere else */

/* ── Mobile adjustments ────────────────────────────────────── */
@media (max-width: 640px) {
  .whatsapp-fab {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-fab svg {
    width: 26px;
    height: 26px;
  }
  .whatsapp-fab__tooltip {
    display: none;
  }
  .lang-fab {
    bottom: calc(1.2rem + 52px + 10px);
    right: 1.2rem;
  }
  .lang-fab__btn {
    width: 52px;
    height: 52px;
  }
  .lang-fab__btn svg {
    width: 20px;
    height: 20px;
  }
  .lang-fab__option {
    width: 38px;
    height: 38px;
    font-size: 0.68rem;
  }
  .btn-ornate:not(.btn-sm) {
    padding: 0.75rem 2rem;
  }
}

/* ============================================================
   ADDITIONS v2.2 – Extracted inline styles (zero-inline-style
   architecture). All style="" attributes moved here.
   ============================================================ */

/* ── Flash container & close button ───────────────────────── */
.flash-container {
  position: fixed;
  top: calc(var(--nav-height) + 1rem);
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 420px;
}
.flash__close {
  margin-left: auto;
  padding: 0 4px;
  font-size: 1.2rem;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ── Newsletter heading & description ──────────────────────── */
.newsletter__heading {
  margin-bottom: 0.75rem;
}
.newsletter__desc {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

/* ── Footer logo ────────────────────────────────────────────── */
.footer__logo-img {
  height: 60px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 6px 10px;
  display: block;
}

/* ── WhatsApp FAB image ─────────────────────────────────────── */
.whatsapp-fab__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

/* ── Page-hero section label centered + gold-light ─────────── */
/* Applied in all page heros that override the default gold color */
.section-label--hero {
  justify-content: center;
  color: var(--gold-light);
}
/* Vertaling hero has extra letter-spacing / smaller font */
.section-label--vertaling-hero {
  justify-content: center;
  color: var(--gold-light);
  letter-spacing: 0.25em;
  font-size: 0.85rem;
}
/* Page-hero italic subtitle */
.page-hero__sub--italic {
  font-style: italic;
}

/* ── Sarah profile photo (inside about-strip__visual-inner) ── */
.about-strip__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Home – About strip body text ──────────────────────────── */
.about-strip__body-text {
  margin: 1.2rem 0;
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 1.05rem;
}

/* ── Home – Workshops dark section ─────────────────────────── */
/* The workshops section sits on --deep-blue background */
.section--workshops-dark {
  background: var(--deep-blue);
}
.section--workshops-dark .section__header {
  color: #fff;
}
.section--workshops-dark .section-label {
  color: var(--gold-light);
}
.section--workshops-dark h2 {
  color: #fff;
}
.section--workshops-dark .section__sub {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Workshop cards on dark background (home page) ─────────── */
.card--dark {
  background: rgba(45, 74, 107, 0.9);
  border-color: rgba(105, 21, 158, 0.35);
}
.card__thumb--home-ws {
  background: rgba(0, 0, 0, 0.25);
  height: 160px;
}
.card__thumb-emoji {
  position: relative;
  z-index: 1;
  font-size: 4rem;
}
.card__thumb-emoji--lg {
  position: relative;
  z-index: 1;
  font-size: 4.5rem;
}
.card--dark .card__title {
  color: #fff;
}
.card--dark .card__tagline {
  color: rgba(255, 255, 255, 0.62);
}

/* ── Workshop card thumb with per-workshop color ────────────── */
/* Each workshop gets a slug-based utility class that sets --ws-color.
   The gradient is applied via .card__thumb--workshop in CSS so no
   inline style is needed on the element itself.                  */
.card__thumb--workshop {
  background: linear-gradient(
    135deg,
    var(--ws-color, var(--deep-blue)),
    #1a2e4a
  );
}
.ws-color--arabische-keuken {
  --ws-color: #8b2500;
}
.ws-color--arabische-kunst {
  --ws-color: #1a2e4a;
}
.ws-color--tradities-feestdagen {
  --ws-color: #4a2d6b;
}
.ws-color--dagelijkse-cultuur {
  --ws-color: #5c3a1e;
}
.ws-color--reizen-arabische-wereld {
  --ws-color: #2d4a6b;
}

/* ── About page CTA block ───────────────────────────────────── */
.about-cta {
  text-align: center;
}
.about-cta__inner {
  max-width: 580px;
  margin: 0 auto;
}
.about-cta__heading {
  margin-bottom: 1rem;
}
.about-cta__text {
  color: var(--text-soft);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ── Courses page CTA block ─────────────────────────────────── */
.courses-cta {
  text-align: center;
}
.courses-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}
.courses-cta__heading {
  margin-bottom: 1rem;
}
.courses-cta__text {
  color: var(--text-soft);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ── Course show page ───────────────────────────────────────── */
.course-hero__img-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.course-hero__img {
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
}
.course-hero__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.course-hero__pricing-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  margin: 0;
}
.course-hero__pricing-badge {
  display: inline-block;
  background-image: url("../images/primary_button.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent;
  color: var(--brown);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 2.4rem;
}
.course-back-btn {
  color: var(--text-muted);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.course-back-btn__icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.course-image-header {
  background: linear-gradient(145deg, #f5e6c8, #ede3d4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.course-image-header__pattern {
  position: absolute;
  inset: 0;
  background-image: url("../images/arabic_pattern.png");
  background-size: 200px;
  opacity: 0.07;
  pointer-events: none;
}
.course-image-header__img {
  height: 200px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 28px rgba(160, 114, 42, 0.3));
}
.course-detail__body {
  padding: 2.5rem;
}
.course-detail__actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Contact page ────────────────────────────────────────────── */
.contact-info__heading {
  margin-bottom: 1rem;
}
.contact-info__desc {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.85;
}
.contact-card {
  padding: 2.5rem;
}
.contact-form__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--deep-blue);
}
.contact-form__submit {
  width: 100%;
}

/* ── Vertaling page ──────────────────────────────────────────── */
.vertaling-intro__strip {
  align-items: flex-start;
}
.vertaling-intro__text-col {
  flex: 1;
  min-width: 0;
}
.vertaling-intro__para {
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.vertaling-intro__creds {
  margin-top: 1.5rem;
}
.vertaling-intro__visual {
  max-width: 340px;
  width: 100%;
}

/* Services section (dark background, same pattern as workshops) */
.section--services-dark {
  background: var(--deep-blue);
}
.section--services-dark .section__header {
  color: #fff;
}
.section--services-dark .section-label {
  color: var(--gold-light);
}
.section--services-dark h2 {
  color: #fff;
}
.features--services {
  margin-top: 2rem;
}
.feature--dark {
  background: rgba(45, 74, 107, 0.85);
  border-color: rgba(105, 21, 158, 0.3);
}
.feature--dark .feature__title {
  color: #fff;
}
.feature--dark .feature__text {
  color: rgba(255, 255, 255, 0.72);
}

/* Process steps */
.process-steps {
  gap: 3rem;
  align-items: flex-start;
}
.process-step {
  text-align: center;
  flex: 1;
}
.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.process-step__desc {
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* Vertaling CTA */
.vertaling-cta {
  text-align: center;
}
.vertaling-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}
.vertaling-cta__heading {
  margin-bottom: 1rem;
}
.vertaling-cta__text {
  color: var(--text-soft);
  line-height: 1.85;
  margin-bottom: 2rem;
}

/* ── Terms page ──────────────────────────────────────────────── */
.terms-content {
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.9;
  color: var(--text-mid);
}
.terms-date {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.terms-heading {
  color: var(--deep-blue);
  font-family: var(--font-display);
  margin-bottom: 1rem;
}
.terms-heading--spaced {
  color: var(--deep-blue);
  font-family: var(--font-display);
  margin: 2rem 0 1rem;
}
.terms-link {
  color: var(--gold);
}
.terms-notice .terms-link {
  font-weight: 600;
}
.terms-notice {
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;
  background: var(--beige);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.terms-notice__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ── Enroll / registration pages ─────────────────────────────── */
.enroll-hero__label {
  justify-content: center;
}
.enroll-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
}
.enroll-hero__sub {
  color: var(--text-soft);
  font-size: 1.05rem;
}
.enroll-card__ws-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 4px;
}
.enroll-card__level-tag {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 4px;
}
.enroll-privacy {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.enroll-privacy a {
  color: var(--gold);
}
.enroll-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Workshops index – coming-soon badge ────────────────────── */
.workshops-coming-soon {
  display: inline-block;
  background: rgba(105, 21, 158, 0.22);
  border: 1px solid rgba(105, 21, 158, 0.55);
  border-radius: 30px;
  padding: 8px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 1.2rem;
}

/* ── Workshops index – intro body text ──────────────────────── */
.workshop-intro__body {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.9;
  white-space: pre-line;
  margin-bottom: 1.5rem;
}

/* ── Workshops index – quote & CTA spacing ──────────────────── */
.workshops-quote-section {
  text-align: center;
}
.workshops-cta-wrap {
  margin-top: 2rem;
}

/* ── Workshops enroll – header with dynamic color ───────────── */
/* The per-workshop gradient is applied via the .ws-color-- class
   combined with this rule so no inline style="" is needed.       */
.enroll-card__header--workshop {
  background: linear-gradient(
    135deg,
    var(--ws-color, var(--deep-blue)),
    #1a2e4a
  );
}

/* ── Vertaling intro – workshop quote section ───────────────── */
.vertaling-quote-section {
  text-align: center;
}
.vertaling-cta-section {
  text-align: center;
}
