:root {

  --gold: #aaa69c;
  --gold-light: #b8b3a7;

  --bg-main: #fafafa;
  --bg-soft: #f3f3f3;

  --card: rgba(255, 255, 255, .9);

  --text-dark: #5f5555;
  --text-soft: #817777;

  --border-soft: rgba(0, 0, 0, .06);

  --shadow:
    0 8px 25px rgba(0, 0, 0, .05);

  --shadow-hover:
    0 15px 35px rgba(0, 0, 0, .08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(247, 247, 247, 0.98) 50%,
      rgba(240, 240, 240, 0.95) 100%);

  color: #5f5555;
  overflow-x: hidden;
  position: relative;
}

body.intro-active {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

main {
  overflow: hidden;
}

.main-content {
  position: relative;
  z-index: 2;
  background: var(--bg-cream);
  animation: mainFade 1.2s ease;
}

.hidden {
  display: none;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.center {
  text-align: center;
}

/* ========================= */
/*           INTRO           */
/* ========================= */
.intro-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  min-height: 100dvh;
  background: var(--bordeaux-deep);
  overflow: hidden;
  z-index: 5000;
}

.intro-screen.is-finished {
  position: relative;
  inset: auto;
  height: 100vh;
  min-height: 100dvh;
  z-index: 1;
}

.intro-trigger {
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  transition: opacity 1.6s ease, transform 1.6s ease, visibility 1.6s ease;
}

.intro-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58, 10, 25, 0.20), rgba(58, 10, 25, 0.35));
  pointer-events: none;
  transition: opacity 1.4s ease;
}

.intro-cover,
.video-end-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro-cover {
  z-index: 2;
  animation: gentlePulse 4.5s ease-in-out infinite;
}

.video-end-frame {
  z-index: 1;
  opacity: 1;
}

/* HINT TAP */
.intro-hint {
  position: absolute;
  bottom: 9%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 999px;
  background: rgba(255, 245, 246, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--rose-cream);
  font-family: "Italiana", serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 208, 214, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: hintFloat 2.5s ease-in-out infinite;
}

.intro-hint i {
  color: var(--rose-baby);
  font-size: 1.1rem;
}

/* DISPARITION DOUCE DE L'ENVELOPPE */
.intro-screen.is-opening .intro-trigger {
  opacity: 0;
  transform: scale(1.08);
  pointer-events: none;
}

.intro-screen.is-opening .intro-trigger::after {
  opacity: 0;
}

.intro-screen.is-opening .intro-hint {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.intro-screen.is-finished .intro-trigger {
  display: none;
}

@keyframes gentlePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.012);
  }
}

@keyframes hintFloat {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* ========================= */
/*     FLOATING LOGO         */
/* ========================= */
.floating-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: clamp(150px, 14vw, 210px);
  height: clamp(150px, 14vw, 210px);
  z-index: 9999;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  animation: logoSwim 26s ease-in-out infinite;
}

.floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  opacity: 0.95;
  filter: drop-shadow(0 8px 24px rgba(90, 26, 43, 0.22));
  animation: logoFloat 5.5s ease-in-out infinite;
}

body.logo-active .floating-logo {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.4s ease, visibility 1.4s ease;
}

@keyframes logoSwim {
  0% {
    transform: translate3d(4vw, 10vh, 0);
  }

  20% {
    transform: translate3d(70vw, 17vh, 0);
  }

  40% {
    transform: translate3d(62vw, 60vh, 0);
  }

  60% {
    transform: translate3d(14vw, 72vh, 0);
  }

  80% {
    transform: translate3d(22vw, 34vh, 0);
  }

  100% {
    transform: translate3d(4vw, 10vh, 0);
  }
}

@keyframes logoFloat {
  0% {
    transform: translateY(0) rotate(-5deg) scale(1);
  }

  25% {
    transform: translateY(-8px) rotate(2deg) scale(1.03);
  }

  50% {
    transform: translateY(3px) rotate(6deg) scale(0.985);
  }

  75% {
    transform: translateY(-6px) rotate(-2deg) scale(1.02);
  }

  100% {
    transform: translateY(0) rotate(-5deg) scale(1);
  }
}

/* ========================= */
/*          SECTIONS         */
/* ========================= */
.section {
  position: relative;
  padding: 100px 0;
}

.section-light {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .96),
      rgba(248, 248, 248, .96));

  color: var(--text-dark);
}

.section-dark {
  background:
    linear-gradient(135deg, var(--bordeaux-deep) 0%, #8d7c73 60%, #8d7c73 100%);
  color: var(--white);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 208, 214, 0.10), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(245, 208, 214, 0.08), transparent 40%);
  pointer-events: none;
}

.section-dark>* {
  position: relative;
  z-index: 1;
}

.section-with-banner {
  padding-top: 0;
}

.full-banner {
  width: 100%;
  margin: 0 0 56px;
  overflow: hidden;
  position: relative;
}

.full-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(90, 26, 43, 0.18));
  pointer-events: none;
}

.section-banner-image {
  width: 100%;
  height: clamp(220px, 34vw, 440px);
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  transition: transform 1.4s ease;
}

.full-banner:hover .section-banner-image {
  transform: scale(1.06);
}

.section-head {
  margin-bottom: 46px;
}

/* ORNEMENTS */
.ornament {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #8d7c73;
  font-size: 0.9rem;
}

.ornament i {
  color: #8d7c73;
  font-size: 0.85rem;
}

.ornament-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, #8d7c73, transparent);
}

.ornament-light {
  color: var(--rose-baby);
}

.ornament-light i {
  color: var(--rose-pale);
}

.ornament-light .ornament-line {
  background: linear-gradient(to right, transparent, var(--rose-baby), transparent);
}

.section-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8d7c73;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-label.light {
  color: var(--rose-baby);
}

.section-title {
  font-family: "Cormorant Garamond", serif;

  color: #5f5555;

  letter-spacing: 1px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 14px;
  font-weight: 600;
}

.section-title.light {
  color: var(--rose-cream);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.section-arabic {
  font-family: "Amiri", serif;
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: #8d7c73;
}

.section-arabic.light {
  color: var(--rose-baby);
}

.section-text {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
}

/* ========================= */
/*      EVENT HIGHLIGHT      */
/* ========================= */
.event-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 auto 38px;
  padding: 26px 28px;
  max-width: 720px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(245, 208, 214, 0.55));
  border: 1px solid var(--border-gold);
  box-shadow: 0 18px 40px rgba(122, 34, 56, 0.12);
  text-align: left;
  backdrop-filter: blur(10px);
}

.event-highlight-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-baby), #8d7c73);
  color: var(--white);
  font-size: 1.55rem;
  box-shadow: 0 10px 24px rgba(166, 68, 88, 0.28);
}

.event-highlight-content {
  flex: 1;
}

.event-highlight-label {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8d7c73;
  font-weight: 600;
}

.event-highlight-content strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.1;
  color: #5a504b;
  margin-bottom: 6px;
  font-weight: 600;
}

.event-highlight-content p {
  color: var(--text-soft);
  margin: 0;
}

/* ========================= */
/*         COUNTDOWN         */
/* ========================= */
.countdown {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: nowrap;
}

.count-box {
  position: relative;
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 26px 10px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(251, 230, 233, 0.55));
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.count-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, #8d7c73, transparent);
}

.count-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.count-box span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  color: #5a504b;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.count-box small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.64rem;
  color: #8d7c73;
  font-weight: 600;
}


/* ========================= */
/*           CARDS           */
/* ========================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}

.card {
  position: relative;
  border-radius: var(--radius);
  padding: 38px 30px;
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.10), transparent 45%);
  pointer-events: none;
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.15;
}

.card p {
  color: inherit;
}

.card-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.95;
  font-weight: 600;
}

.card-subtitle i {
  margin-right: 8px;
  color: inherit;
}

.card-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.card-light {
  background: rgba(255, 255, 255, .92);

  border: 1px solid rgba(200, 200, 200, .18);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, .04);

  backdrop-filter: blur(10px);
}

.card-light h3 {
  color: #5a504b;
}

.card-light .card-subtitle {
  color: #8d7c73;
}

.card-light i {
  color: #8d7c73;
}

.card-light:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: #8d7c73;
}

.card-dark {
  background: rgba(255, 245, 246, 0.10);
  border: 1px solid rgba(245, 208, 214, 0.22);
  color: var(--white);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(8px);
}

.card-dark h3 {
  color: var(--rose-cream);
}

.card-dark .card-subtitle {
  color: var(--rose-baby);
}

.card-dark i {
  color: var(--rose-baby);
}

.card-dark:hover {
  transform: translateY(-12px);
  border-color: var(--rose-baby);
  background: rgba(255, 245, 246, 0.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--rose-pale);
  font-weight: 500;
  border-bottom: 1px solid rgba(245, 208, 214, 0.48);
  padding-bottom: 3px;
  transition: var(--transition);
}

.text-link:hover {
  color: var(--white);
  transform: translateY(-1px);
  border-color: var(--rose-baby);
}

.dress-grid .card {
  min-height: 220px;
}

/* ========================= */
/*            TEXT           */
/* ========================= */
.text-with-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.text-with-icon i {
  color: #8d7c73;
  font-size: 1rem;
}

.section-arabic-text {
  background: linear-gradient(180deg, #fffaf5, #ffffff);
  padding: 80px 20px;
}

.arabic-text {
  font-family: 'Amiri', serif;
  font-size: 1.6rem;
  line-height: 2.4;
  color: #3a2f2a;
  text-align: center;
  margin: 25px 0;
}

.arabic-signature {
  font-family: 'Amiri', serif;
  font-size: 1.3rem;
  color: #b08a5a;
  margin-top: 30px;
}

.section-arabic-text .ornament {
  margin-bottom: 25px;
}

/* ========================= */
/*            MAP            */
/* ========================= */
.map-box {
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(245, 208, 214, 0.28);
  box-shadow: var(--shadow-dark);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.music-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #5f5555;
  font-size: 18px;
}

.music-toggle {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.music-toggle:hover {
  transform: scale(1.05);
}

.map-box:hover {
  transform: scale(1.01);
  border-color: var(--rose-baby);
}

/* ========================= */
/*          FOOTER           */
/* ========================= */
.footer {
  background:
    linear-gradient(180deg, #8d7c73 0%, var(--bordeaux-deep) 100%);
  color: var(--white);
  padding: 76px 0 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 208, 214, 0.10), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(245, 208, 214, 0.08), transparent 40%);
  pointer-events: none;
}

.footer>* {
  position: relative;
  z-index: 1;
}

.footer-divider {
  width: 140px;
  height: 1px;
  margin: 0 auto 28px;
  background: linear-gradient(to right, transparent, var(--rose-baby), transparent);
}

.footer-divider-bottom {
  margin-top: 28px;
  margin-bottom: 26px;
}

.intro-title {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.05;
  color: var(--rose-cream);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.footer-text {
  color: rgba(255, 245, 246, 0.85);
  max-width: 720px;
  margin: 0 auto 16px;
}

.footer-arabic {
  font-family: "Amiri", serif;
  font-size: 1.6rem;
  color: var(--rose-baby);
}

.footer-copyright {
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 245, 246, 0.78);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ========================= */
/*        ANIMATIONS         */
/* ========================= */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 0;
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-zoom {
  transform: scale(0.94);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes mainFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/*         RESPONSIVE        */
/* ========================= */
@media (max-width: 1024px) {
  .section {
    padding: 88px 0;
  }

  .section-with-banner {
    padding-top: 0;
  }

  .cards-grid {
    gap: 24px;
  }

  .section-banner-image {
    height: clamp(210px, 36vw, 370px);
  }
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .countdown {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 72px 0;
  }

  .section-with-banner {
    padding-top: 0;
  }

  .full-banner {
    margin-bottom: 36px;
  }

  .section-banner-image {
    height: 220px;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-title {
    font-size: clamp(1.9rem, 7vw, 2.7rem);
  }

  .section-arabic {
    font-size: 1.4rem;
  }

  .ornament-line {
    width: 40px;
  }

  .event-highlight {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
    gap: 14px;
  }

  .event-highlight-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    font-size: 1.25rem;
  }

  .countdown {
    flex-wrap: wrap;
    gap: 12px;
  }

  .count-box {
    width: calc(50% - 6px);
    flex: unset;
    padding: 18px 8px;
    border-radius: 18px;
  }

  .count-box span {
    font-size: clamp(1.3rem, 6vw, 2rem);
    margin-bottom: 6px;
  }

  .count-box small {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .cards-grid,
  .dress-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 26px;
  }

  .card {
    padding: 30px 22px;
  }

  .card h3 {
    font-size: 1.75rem;
  }

  .map-box {
    height: 320px;
    border-radius: 20px;
  }

  .footer {
    padding: 58px 0 64px;
  }

  .footer-arabic {
    font-size: 1.3rem;
  }

  .intro-title {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  .floating-logo {
    width: 110px;
    height: 110px;
  }

  .footer-copyright {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .intro-hint {
    font-size: 0.82rem;
    padding: 12px 20px;
    bottom: 7%;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 18px);
  }

  .countdown {
    gap: 10px;
  }

  .count-box {
    width: calc(50% - 5px);
    padding: 14px 6px;
  }

  .count-box span {
    font-size: 1.3rem;
  }

  .count-box small {
    font-size: 0.54rem;
  }

  .card {
    padding: 24px 18px;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-arabic {
    font-size: 1.2rem;
  }

  .section-banner-image {
    height: 180px;
  }

  .text-with-icon {
    gap: 8px;
  }

  .floating-logo {
    width: 95px;
    height: 95px;
  }

  .footer-copyright {
    font-size: 0.72rem;
  }

  .intro-hint {
    font-size: 0.72rem;
    padding: 10px 16px;
    letter-spacing: 0.14em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
  }

  .floating-logo {
    top: 20px;
    left: 20px;
    transform: none !important;
  }
}

/* =========================================
   OVERRIDES THEME PHOTO - SANS CHANGER HTML
========================================= */

/* Fond général plus nacré / papier satiné */
body {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 244, 246, 0.98) 42%, rgba(250, 248, 243, 0.98) 100%),
    repeating-linear-gradient(145deg,
      rgba(210, 210, 216, 0.08) 0px,
      rgba(210, 210, 216, 0.08) 2px,
      transparent 2px,
      transparent 28px),
    var(--bg-main);
  color: var(--text-dark);
}

/* Le main devait utiliser --bg-cream qui n'existait pas */
.main-content {
  background: var(--bg-cream);
}

/* INTRO */
.intro-screen {
  background:
    linear-gradient(135deg, #f8f8fa 0%, #ececef 50%, #faf8f3 100%);
}

.intro-trigger::after {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.05),
      rgba(197, 160, 89, 0.14));
}

.intro-hint {
  background: rgba(255, 255, 255, 0.34);
  color: var(--gold-deep);
  border: 1px solid rgba(197, 160, 89, 0.26);
  box-shadow: 0 10px 30px rgba(70, 60, 45, 0.12);
}

.intro-hint i {
  color: var(--gold);
}

/* Sections claires */
.section-light {
  background:
    radial-gradient(circle at top left, rgba(242, 216, 216, 0.18), transparent 22%),
    radial-gradient(circle at top right, rgba(217, 227, 239, 0.14), transparent 20%),
    radial-gradient(circle at bottom left, rgba(200, 214, 198, 0.15), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, .90), rgba(248, 245, 239, .78)),
    var(--bg-main);
  color: var(--text-dark);
}

/* Les zones "dark" deviennent elles aussi claires, comme la photo */
.section-dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 216, 216, 0.18), transparent 20%),
    radial-gradient(circle at 88% 82%, rgba(217, 227, 239, 0.16), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #f4f4f6 52%, #f7f3ec 100%);
  color: var(--text-dark);
}

.section-dark::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(197, 160, 89, 0.06), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(197, 160, 89, 0.05), transparent 34%);
}

.section-title {
  color: #403a38;
}

.section-title.light {
  color: #403a38;
  text-shadow: none;
}

.section-label,
.section-label.light {
  color: var(--gold-deep);
}

.section-arabic,
.section-arabic.light {
  color: #4a4442;
}

.section-text {
  color: var(--text-soft);
}

/* Ornements */
.ornament,
.ornament-light {
  color: var(--gold-deep);
}

.ornament i,
.ornament-light i {
  color: var(--gold);
}

.ornament-line,
.ornament-light .ornament-line {
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

/* Bandeaux image */
.full-banner::after {
  background: linear-gradient(180deg, transparent 60%, rgba(197, 160, 89, 0.10));
}

/* Event highlight */
.event-highlight {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.88));
  border: 1px solid var(--border-gold);
  box-shadow: 0 18px 40px rgba(90, 70, 40, 0.10);
}

.event-highlight-icon {
  background: linear-gradient(135deg, #fefbfb, #dbd5d6);
  color: var(--ink-blue);
  box-shadow: 0 10px 24px rgba(197, 160, 89, 0.22);
}

.event-highlight-label {
  color: var(--gold-deep);
}

.event-highlight-content strong {
  color: #403a38;
}

.event-highlight-content p {
  color: var(--text-soft);
}

/* Countdown */
.count-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 239, 0.82));
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow);
}

.count-box::before {
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

.count-box span {
  color: #403a38;
}

.count-box small {
  color: var(--gold-deep);
}

/* Cards */
.card-light,
.card-dark {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border-gold);
  color: var(--text-dark);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.card-light h3,
.card-dark h3 {
  color: #403a38;
}

.card-light .card-subtitle,
.card-dark .card-subtitle {
  color: var(--gold-deep);
}

.card-light i,
.card-dark i {
  color: var(--gold);
}

.card-light:hover,
.card-dark:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(197, 160, 89, 0.52);
  background: rgba(255, 255, 255, 0.90);
}

/* Liens */
.text-link {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(197, 160, 89, 0.40);
}

.text-link:hover {
  color: var(--ink-blue);
  border-color: var(--gold);
}

/* Icônes texte */
.text-with-icon i {
  color: var(--gold);
}

/* Carte Google */
.map-box {
  border: 1.5px solid rgba(197, 160, 89, 0.30);
  box-shadow: var(--shadow);
}

.map-box:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

/* Footer devenu clair comme la photo */
.footer {
  background:
    radial-gradient(circle at 10% 15%, rgba(242, 216, 216, 0.16), transparent 20%),
    radial-gradient(circle at 90% 85%, rgba(217, 227, 239, 0.14), transparent 22%),
    linear-gradient(180deg, #faf8f3 0%, #f1ede5 100%);
  color: var(--text-dark);
}

.footer::before {
  background:
    radial-gradient(circle at 30% 20%, rgba(197, 160, 89, 0.06), transparent 36%),
    radial-gradient(circle at 70% 80%, rgba(197, 160, 89, 0.05), transparent 36%);
}

.footer-divider,
.footer-divider-bottom {
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.intro-title {
  color: var(--gold-deep);
  text-shadow: none;
}

.footer-text {
  color: var(--text-soft);
}

.footer-arabic {
  color: #4a4442;
}

.footer-copyright {
  color: var(--text-muted);
}

/* Petites finitions premium */
.card,
.count-box,
.event-highlight,
.map-box {
  position: relative;
}

.card::after,
.count-box::after,
.event-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.34),
      transparent 28%,
      transparent 72%,
      rgba(197, 160, 89, 0.05));
}

/* Mobile */
@media (max-width: 768px) {

  .section-dark,
  .section-light,
  .footer {
    background-size: cover;
  }
}