@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@500;700;800&display=swap");

:root {
  --red: #8e1217;
  --red-dark: #4f090d;
  --gold: #c5a880;
  --cream: #f8f0e3;
  --paper: #fbf7ef;
  --ink: #171313;
  --muted: #746b61;
  --line: rgba(197, 168, 128, 0.34);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
#calendrier {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background: #080808;
  color: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(8, 8, 8, 0.84);
  border-bottom: 1px solid rgba(197, 168, 128, 0.18);
  backdrop-filter: blur(14px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand img {
  width: 92px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.48));
}

.brand span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: rgba(248, 240, 227, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.nav-links a[aria-current="location"] {
  color: var(--gold);
}

.nav-contact {
  padding: 10px 14px;
  border: 1px solid rgba(197, 168, 128, 0.44);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(197, 168, 128, 0.42);
  border-radius: 999px;
  padding: 9px 12px;
  font: inherit;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 80px 22px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 50% 22%, rgba(142, 18, 23, 0.42), transparent 32%),
    url("backGround.jpg") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-top: 1px solid rgba(197, 168, 128, 0.26);
  border-bottom: 1px solid rgba(197, 168, 128, 0.18);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 1px;
  top: 50%;
  left: -20%;
  background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.18), transparent);
  transform: rotate(-3deg);
  animation: light-pass 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  padding: clamp(36px, 6vw, 68px) 24px;
  text-align: center;
  border: 1px solid rgba(197, 168, 128, 0.46);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(8, 8, 8, 0.78);
  box-shadow: var(--shadow);
  animation: stage-in 1s ease both;
}

.hero-logo {
  width: min(520px, 82vw);
  margin-bottom: 22px;
  opacity: 0.84;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.55));
  animation: soft-in 0.9s ease 0.14s both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: soft-in 0.9s ease 0.32s both;
}

.hero h1 {
  margin: 0;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.02;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  animation: title-in 1.1s ease 0.55s both;
}

.hero-subtitle {
  margin: 20px 0 0;
  color: rgba(248, 240, 227, 0.92);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3.4vw, 2.45rem);
  animation: soft-in 0.95s ease 0.9s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  animation: soft-in 0.95s ease 1.1s both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(197, 168, 128, 0.1);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  color: #fff;
  background: rgba(142, 18, 23, 0.8);
}

.button-primary {
  background: var(--red);
}

.pulse {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  height: 34px;
  margin-top: 32px;
}

.pulse span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 20px rgba(142, 18, 23, 0.78);
  animation: beat 1.7s ease-in-out infinite;
}

.pulse span:nth-child(2),
.pulse span:nth-child(4) {
  background: var(--gold);
}

.pulse span:nth-child(2) {
  animation-delay: 0.18s;
}

.pulse span:nth-child(3) {
  animation-delay: 0.36s;
}

.pulse span:nth-child(4) {
  animation-delay: 0.54s;
}

.section {
  padding: 82px 22px;
}

.section-light {
  background:
    radial-gradient(circle at 16% 20%, rgba(142, 18, 23, 0.1), transparent 26%),
    linear-gradient(135deg, #f8f1e9 0%, #f5f5f5 100%);
  color: var(--ink);
}

.wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-title {
  margin: 0 0 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1;
}

.intro {
  max-width: 760px;
  margin: 0 auto 36px;
  color: rgba(248, 240, 227, 0.82);
  font-size: 1.12rem;
  line-height: 1.8;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  padding: 24px;
  border: 1px solid rgba(197, 168, 128, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.card h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
}

.card p {
  margin: 0;
  color: rgba(248, 240, 227, 0.78);
  line-height: 1.65;
}

.venue-section {
  border-top: 1px solid rgba(197, 168, 128, 0.12);
  border-bottom: 1px solid rgba(197, 168, 128, 0.12);
  background:
    radial-gradient(circle at 18% 18%, rgba(142, 18, 23, 0.18), transparent 30%),
    linear-gradient(135deg, #090909 0%, #120d0d 100%);
}

.venue-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.venue-heading .section-title {
  margin-bottom: 16px;
  color: var(--cream);
}

.venue-intro {
  margin: 0;
  color: rgba(248, 240, 227, 0.8);
  font-size: 1.06rem;
  line-height: 1.75;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.venue-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.venue-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #050505;
}

.venue-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.venue-card:hover .venue-image img {
  transform: scale(1.025);
}

.venue-caption {
  padding: 22px 24px 24px;
}

.venue-kicker {
  margin: 0 0 8px;
  color: var(--gold) !important;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.venue-caption h3 {
  margin: 0 0 10px;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.venue-caption p {
  margin: 0;
  color: rgba(248, 240, 227, 0.78);
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(290px, 0.76fr);
  gap: 38px;
  align-items: center;
}

.about-copy p {
  margin: 0 0 20px;
  color: #2b2b2b;
  font-size: 1.12rem;
  line-height: 1.85;
}

.about-highlight {
  position: relative;
  padding: 20px 22px;
  border-left: 4px solid var(--red);
  border-radius: 0 14px 14px 0;
  color: var(--red) !important;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.photo-frame {
  position: relative;
  transform: rotate(1.3deg);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(142, 18, 23, 0.3);
  border-radius: 24px;
  transform: rotate(-4deg);
  animation: frame-breathe 4s ease-in-out infinite;
}

.photo-frame img {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid rgba(197, 168, 128, 0.42);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.event-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 30px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.events-section .event-panel {
  margin-bottom: 56px;
}

.section-actions {
  justify-content: flex-start;
  margin-top: 0;
}

.events-calendar,
.past-events {
  padding-top: 8px;
}

.past-events {
  margin-top: 56px;
}

.event-panel h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.event-panel p {
  margin: 0 0 18px;
  color: rgba(248, 240, 227, 0.84);
  line-height: 1.75;
}

.poster-thumb {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.38);
  border-radius: 10px;
  background: #000;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.poster-thumb img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

.poster-thumb:hover img {
  transform: scale(1.035);
}

.calendar {
  overflow-x: auto;
  border: 1px solid rgba(197, 168, 128, 0.24);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.18);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

td {
  color: rgba(248, 240, 227, 0.88);
}

tr:last-child td {
  border-bottom: 0;
}

.text-link {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: 34px;
  align-items: start;
}

.contact-box,
.form-card {
  padding: 28px;
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.contact-box h1,
.contact-box h2,
.form-card h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.contact-box p {
  color: rgba(248, 240, 227, 0.82);
  line-height: 1.75;
}

label {
  display: block;
  margin: 0 0 8px;
  color: var(--cream);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  margin: 0 0 16px;
  padding: 13px 14px;
  border: 1px solid rgba(197, 168, 128, 0.38);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.25);
  font: inherit;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.turnstile-wrap {
  width: 100%;
  margin: 2px 0 18px;
}

.turnstile-wrap .cf-turnstile {
  width: 100%;
}

.security-note {
  margin: 8px 0 0;
  color: rgba(248, 240, 227, 0.58);
  font-size: 0.76rem;
  line-height: 1.5;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 8px;
  line-height: 1.55;
}

.notice-success {
  color: #173b26;
  background: #d8f1df;
}

.notice-error {
  color: #4a0f12;
  background: #f3d2d5;
}

.site-footer {
  padding: 34px 22px;
  color: rgba(248, 240, 227, 0.62);
  border-top: 1px solid rgba(197, 168, 128, 0.18);
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.982);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  animation:
    dg-reveal-spring 1.02s cubic-bezier(0.16, 1, 0.3, 1)
    var(--reveal-delay, 0ms) both;
}

@keyframes dg-reveal-spring {
  0% {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(0.982);
  }

  55% {
    opacity: 1;
    transform: translate3d(0, -6px, 0) scale(1.004);
  }

  72% {
    transform: translate3d(0, 3px, 0) scale(0.999);
  }

  86% {
    transform: translate3d(0, -1px, 0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

.modal {
  width: min(860px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  max-height: calc(100dvh - 28px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: transparent;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.74);
}

.modal-inner {
  position: relative;
  background: #050505;
}

.modal img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 28px);
  max-height: calc(100dvh - 28px);
  margin: auto;
}

.modal-close {
  position: absolute;
  z-index: 1;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  font: 400 1.25rem/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}

@keyframes light-pass {
  0%, 35% {
    transform: translateX(-18%) rotate(-3deg);
    opacity: 0;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateX(18%) rotate(-3deg);
    opacity: 0;
  }
}

@keyframes stage-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes title-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes beat {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  45% {
    transform: translateY(-12px);
    opacity: 1;
  }
}

@keyframes frame-breathe {
  0%, 100% {
    transform: rotate(-4deg) scale(1);
  }
  50% {
    transform: rotate(-4deg) scale(1.025);
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(197, 168, 128, 0.24);
    border-radius: 12px;
    background: rgba(8, 8, 8, 0.96);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px;
  }

  .hero {
    min-height: 70vh;
    padding: 56px 14px;
  }

  .hero-card {
    padding: 34px 18px 38px;
  }

  .cards,
  .venue-grid,
  .about-grid,
  .event-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    gap: 12px;
  }

  .section {
    padding: 58px 18px;
  }

  th,
  td {
    padding: 13px;
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 11px;
  margin-top: 16px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  border: 1px solid rgba(197, 168, 128, 0.5);
  border-radius: 50%;
  background: rgba(142, 18, 23, 0.13);
  text-decoration: none;
  transition: color 0.2s ease,
              background-color 0.2s ease,
              border-color 0.2s ease,
              transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--cream);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.social-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.social-icon {
  display: block;
  width: 21px;
  height: 21px;
}

.instagram-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.instagram-icon .instagram-dot,
.youtube-icon {
  fill: currentColor;
  stroke: none;
}

.youtube-icon .youtube-play {
  fill: #080808;
}
