/* ================================
   🎆 THEME NOUVEL AN 2026 GLOBAL
   ================================ */

/* Palette élégante Nouvel An avec touches dorées et argentées */
body.newyear {
    --ny-gold: #FFD700;           /* Or brillant */
    --ny-silver: #C0C0C0;         /* Argent élégant */
    --ny-champagne: #F7E7CE;      /* Champagne doux */
    --ny-midnight: #0F1B2E;       /* Bleu nuit profond */
    --ny-royal-blue: #1E3A8A;     /* Bleu royal */
    --ny-white: #FFFFFF;          /* Blanc pur */
    --ny-sparkle: #FFF4E6;        /* Éclat doré clair */
    --ny-firework-red: #FF1744;   /* Rouge feu d'artifice */
    --ny-firework-blue: #00B0FF;  /* Bleu feu d'artifice */
    --ny-glow-gold: rgba(255, 215, 0, 0.9);
    --ny-glow-silver: rgba(192, 192, 192, 0.8);
    background:
      radial-gradient(1200px 600px at 10% -10%, rgba(30, 58, 138, 0.12), transparent 60%),
      radial-gradient(1200px 600px at 90% -10%, rgba(255, 215, 0, 0.10), transparent 60%),
      var(--bulma-body-background, #fff);
  }

  /* ================================
     1) Ruban "BONNE ANNÉE 2026" - Élégant et festif
     ================================ */
  body.newyear .ny-ribbon { position: relative; overflow: hidden; }
  body.newyear .ny-ribbon::after {
    content: "🎆 BONNE ANNÉE 2026";
    position: absolute; top: 12px; left: -36px;
    transform: rotate(-12deg);
    background: linear-gradient(135deg, var(--ny-midnight) 0%, var(--ny-royal-blue) 50%, var(--ny-midnight) 100%);
    color: var(--ny-gold);
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 4px;
    border: 2px solid var(--ny-gold);
    box-shadow:
      0 0 20px var(--ny-glow-gold),
      0 0 40px rgba(255, 215, 0, 0.5),
      0 8px 24px rgba(0,0,0,.4);
    animation: ny-pulse 2s ease-in-out infinite;
  }
  @keyframes ny-pulse {
    0%, 100% {
      transform: rotate(-12deg) scale(1);
      box-shadow:
        0 0 20px var(--ny-glow-gold),
        0 0 40px rgba(255, 215, 0, 0.5),
        0 8px 24px rgba(0,0,0,.4);
    }
    50% {
      transform: rotate(-12deg) scale(1.08);
      box-shadow:
        0 0 30px var(--ny-glow-gold),
        0 0 60px rgba(255, 215, 0, 0.9),
        0 12px 32px rgba(0,0,0,.5);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    body.newyear .ny-ribbon::after { animation: none; }
  }

  /* ================================
     2) Séparateur thématique - Doré et argenté
     ================================ */
  body.newyear .ny-divider {
    height: 3px;
    border: 0;
    margin: 2rem 0;
    background: linear-gradient(90deg,
      transparent,
      var(--ny-gold) 20%,
      var(--ny-silver) 50%,
      var(--ny-gold) 80%,
      transparent);
    box-shadow: 0 0 15px var(--ny-glow-gold);
    opacity: 1;
  }

  /* ================================
     3) Coins décoratifs
     ================================ */
  /* Coupe de champagne coin haut droit */
  body.newyear .ny-champagne-corner { position: relative; }
  body.newyear .ny-champagne-corner::before {
    content: "";
    position: absolute; top: 8px; right: 8px; width: 120px; height: 120px; opacity: .99;
    background: no-repeat center/contain
      url("/images_2/new_year/new_year_4.png");
    pointer-events: none;
  }

  body.newyear .ny-year-corner { position: relative; }
  body.newyear .ny-year-corner::before {
    content: "";
    position: absolute; top: 8px; right: 8px; width: 120px; height: 120px; opacity: .99;
    background: no-repeat center/contain
      url("/images_2/new_year/new_year_1.png");
    pointer-events: none;
  }

  body.newyear .ny-year-corner-v2 { position: relative; }
  body.newyear .ny-year-corner-v2::before {
    content: "";
    position: absolute; top: 8px; right: 8px; width: 100px; height: 100px; opacity: .99;
    background: no-repeat center/contain
      url("/images_2/new_year/new_year_25.png");
    pointer-events: none;
  }

  body.newyear .ny-ball-corner { position: relative; }
  body.newyear .ny-ball-corner::before {
    content: "";
    position: absolute; top: 8px; right: 8px; width: 100px; height: 100px; opacity: .99;
    background: no-repeat center/contain
      url("/images_2/new_year/new_year_6.png");
    pointer-events: none;
  }

  body.newyear .ny-people-corner { position: relative; }
  body.newyear .ny-people-corner::before {
    content: "";
    position: absolute; top: 8px; right: 8px; width: 100px; height: 100px; opacity: .99;
    background: no-repeat center/contain
      url("/images_2/new_year/new_year_13.png");
    pointer-events: none;
  }

  body.newyear .ny-champagne-corner-v2 { position: relative; }
  body.newyear .ny-champagne-corner-v2::before {
    content: "";
    position: absolute; top: 8px; right: 8px; width: 100px; height: 100px; opacity: .99;
    background: no-repeat center/contain
      url("/images_2/new_year/new_year_24.png");
    pointer-events: none;
  }

  body.newyear .ny-2026-corner { position: relative; }
  body.newyear .ny-2026-corner::before {
    content: "";
    position: absolute; top: 8px; right: 8px; width: 90px; height: 90px; opacity: .99;
    background: no-repeat center/contain
      url("/images_2/new_year/new_year_8.png");
    pointer-events: none;
  }

  body.newyear .ny-2026-corner-v4 { position: relative; }
  body.newyear .ny-2026-corner-v4::before {
    content: "";
    position: absolute; top: 8px; right: 8px; width: 90px; height: 90px; opacity: .99;
    background: no-repeat center/contain
      url("/images_2/new_year/new_year_17.png");
    pointer-events: none;
  }

  /* Feux d'artifice coin haut gauche */
  body.newyear .ny-firework-corner { position: relative; }
  body.newyear .ny-firework-corner::before {
    content: "";
    position: absolute;
    top: 8px; left: 8px;
    width: 100px; height: 100px;
    opacity: 0.95;
    background: no-repeat center/contain url("/images_2/new_year/new_year_23.png");
    pointer-events: none;
  }

  body.newyear .ny-cat-corner { position: relative; }
  body.newyear .ny-cat-corner::after {
    content: "";
    position: absolute;
    top: 8px; left: 8px;
    width: 100px; height: 100px;
    opacity: 0.95;
    background: no-repeat center/contain url("/images_2/new_year/new_year_16.png");
    pointer-events: none;
  }

  body.newyear .ny-song-corner { position: relative; }
  body.newyear .ny-song-corner::after {
    content: "";
    position: absolute;
    top: 8px; left: 8px;
    width: 100px; height: 100px;
    opacity: 0.95;
    background: no-repeat center/contain url("/images_2/new_year/new_year_20.png");
    pointer-events: none;
  }

  body.newyear .ny-2026-corner-v2 { position: relative; }
  body.newyear .ny-2026-corner-v2::after {
    content: "";
    position: absolute;
    top: 8px; left: 8px;
    width: 100px; height: 100px;
    opacity: 0.95;
    background: no-repeat center/contain url("/images_2/new_year/new_year_15.png");
    pointer-events: none;
  }

  body.newyear .ny-2026-corner-v3 { position: relative; }
  body.newyear .ny-2026-corner-v3::after {
    content: "";
    position: absolute;
    top: 8px; left: 8px;
    width: 100px; height: 100px;
    opacity: 0.95;
    background: no-repeat center/contain url("/images_2/new_year/new_year_9.png");
    pointer-events: none;
  }

  /* Horloge minuit coin bas gauche */
  body.newyear .ny-clock-corner { position: relative; }
  body.newyear .ny-clock-corner::after {
    content: "";
    position: absolute;
    bottom: 8px; left: 8px;
    width: 100px; height: 100px;
    opacity: 0.95;
    background: no-repeat center/contain url("/images_2/new_year/new_year_19.png");
    pointer-events: none;
  }

  /* Confettis coin bas droit */
  body.newyear .ny-confetti-corner { position: relative; }
  body.newyear .ny-confetti-corner::after {
    content: "";
    position: absolute;
    bottom: 8px; right: 8px;
    width: 100px; height: 100px;
    opacity: 0.95;
    background: no-repeat center/contain url("/images_2/new_year/new_year_12.png");
    pointer-events: none;
  }

  /* ================================
     4) Bouton Glow - Ultra festif et lumineux
     ================================ */
  @keyframes ny-glow {
    0%, 100% {
      box-shadow:
        0 0 20px var(--ny-glow-gold),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.4);
    }
    50% {
      box-shadow:
        0 0 30px var(--ny-glow-gold),
        0 0 60px rgba(255, 215, 0, 0.9),
        0 12px 35px rgba(0, 0, 0, 0.5);
    }
  }
  body.newyear .ny-glow {
    background: linear-gradient(135deg,
      var(--ny-midnight) 0%,
      var(--ny-royal-blue) 40%,
      var(--ny-gold) 100%);
    border: 3px solid var(--ny-gold);
    color: var(--ny-white) !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    position: relative;
    animation: ny-glow 2s ease-in-out infinite;
  }
  body.newyear .ny-glow::before {
    content: "";
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--ny-gold), var(--ny-silver), var(--ny-gold));
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    animation: ny-border-glow 2.5s ease-in-out infinite;
  }
  @keyframes ny-border-glow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.6; }
  }
  @media (prefers-reduced-motion: reduce) {
    body.newyear .ny-glow { animation: none; }
    body.newyear .ny-glow::before { animation: none; }
  }

  /* ================================
     5) Confettis tombants animés - Festifs et fluides
     ================================ */
  body.newyear .ny-confetti { position: relative; overflow: visible; }
  body.newyear .ny-confetti .confetti {
    position: absolute; top: -8px; left: -10%;
    font-size: 28px;
    opacity: 0;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8)) drop-shadow(0 4px 6px rgba(0,0,0,.6));
    animation: ny-confetti-fall 6s ease-in-out infinite;
  }
  body.newyear .ny-confetti .confetti:nth-child(2) { animation-delay: 0.8s; top: 12px; }
  body.newyear .ny-confetti .confetti:nth-child(3) { animation-delay: 1.6s; top: 30px; }
  body.newyear .ny-confetti .confetti:nth-child(4) { animation-delay: 2.4s; top: 45px; }
  body.newyear .ny-confetti .confetti:nth-child(5) { animation-delay: 3.2s; top: 60px; }

  @keyframes ny-confetti-fall {
    0%   {
      transform: translateX(0) translateY(-50px) rotate(0deg);
      opacity: 0;
      filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8)) drop-shadow(0 4px 6px rgba(0,0,0,.6));
    }
    10%  {
      opacity: 1;
      filter: drop-shadow(0 0 15px rgba(255, 215, 0, 1)) drop-shadow(0 4px 8px rgba(0,0,0,.7));
    }
    50%  {
      transform: translateX(50vw) translateY(50vh) rotate(180deg);
      filter: drop-shadow(0 0 20px rgba(192, 192, 192, 1)) drop-shadow(0 4px 10px rgba(0,0,0,.8));
    }
    100% {
      transform: translateX(110vw) translateY(100vh) rotate(360deg);
      opacity: 0;
      filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8)) drop-shadow(0 4px 6px rgba(0,0,0,.6));
    }
  }
  @media (prefers-reduced-motion: reduce) {
    body.newyear .ny-confetti .confetti { animation: none; opacity: .7; }
  }

  /* ================================
     6) Particules scintillantes (sparkles)
     ================================ */
  @keyframes ny-float {
    0% {
      transform: translateY(0) translateX(0) scale(1);
      opacity: .7;
      box-shadow: 0 0 15px var(--ny-glow-gold);
    }
    50% {
      transform: translateY(-15px) translateX(4px) scale(1.4);
      opacity: 1;
      box-shadow: 0 0 30px var(--ny-glow-gold), 0 0 50px rgba(255, 215, 0, 0.5);
    }
    100% {
      transform: translateY(0) translateX(0) scale(1);
      opacity: .7;
      box-shadow: 0 0 15px var(--ny-glow-gold);
    }
  }
  body.newyear .ny-sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    pointer-events: none;
    background: radial-gradient(circle at 30% 30%, var(--ny-white), var(--ny-gold) 50%, var(--ny-silver) 100%);
    animation: ny-float 3s ease-in-out infinite;
    opacity: .8;
    box-shadow: 0 0 20px var(--ny-glow-gold);
  }
  @media (prefers-reduced-motion: reduce) {
    body.newyear .ny-sparkle { animation: none; }
  }

  /* ================================
     7) Tooltip personnalisé - Élégant
     ================================ */
  body.newyear .ny-tooltip { position: relative; }
  body.newyear .ny-tooltip::after {
    content: attr(data-tooltip);
    position: absolute; bottom: 100%; left: 50%; transform: translate(-50%, -6px);
    background: linear-gradient(135deg, var(--ny-midnight), var(--ny-royal-blue));
    color: var(--ny-gold);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    border: 2px solid var(--ny-gold);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow:
      0 0 20px var(--ny-glow-gold),
      0 8px 20px rgba(0,0,0,.4);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.newyear .ny-tooltip:hover::after,
  body.newyear .ny-tooltip:focus::after {
    opacity: 1;
    transform: translate(-50%, -12px);
  }

  /* ================================
     8) Curseur personnalisé (desktop)
     ================================ */
  @media (pointer: fine) {
    body.newyear { cursor: url('/images_2/pumpkin.png') 8 8, auto; }
  }

  /* ================================
     9) Gradients de section
     ================================ */
  /* Gradient subtil mais élégant */
  body.newyear .ny-gradient {
    background:
      linear-gradient(to bottom, rgba(30, 58, 138, 0.08), transparent 30%),
      linear-gradient(to top, rgba(255, 215, 0, 0.06), transparent 30%),
      var(--bulma-body, #fff);
    color: var(--ny-midnight);
  }

  /* Gradient intense nuit étoilée avec touches dorées */
  body.newyear .ny-gradient-intense {
    background:
      radial-gradient(800px at top center, rgba(30, 58, 138, 0.5), transparent 70%),
      radial-gradient(800px at bottom center, rgba(255, 215, 0, 0.3), transparent 70%),
      #0a0a1a;
    color: var(--ny-white);
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* Fond nuit profond avec halo doré intense */
  body.newyear .ny-dark-bg {
    position: relative;
    background: var(--ny-midnight);
    color: var(--ny-white);
    overflow: hidden;
  }

  body.newyear .ny-dark-bg::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 300px;
    pointer-events: none;
    background: radial-gradient(
      circle at top center,
      var(--ny-glow-gold) 0%,
      rgba(255, 215, 0, 0.4) 30%,
      rgba(192, 192, 192, 0.2) 50%,
      transparent 80%
    );
    z-index: 0;
  }

  /* Assure que le contenu passe au-dessus */
  body.newyear .ny-dark-bg > * {
    position: relative;
    z-index: 1;
  }

  /* ================================
     10) Countdown skinné - Festif et élégant
     ================================ */
  body.newyear .ny-countdown .cd__text {
    background: linear-gradient(135deg, var(--ny-midnight), var(--ny-royal-blue));
    color: var(--ny-gold);
    font-weight: 900;
    border: 3px solid var(--ny-gold);
    box-shadow:
      0 0 25px var(--ny-glow-gold),
      0 8px 25px rgba(0,0,0,.5);
  }

  /* ================================
     11) Conteneur toile animée (pour feux d'artifice canvas)
     ================================ */
  body.newyear .ny-web-wrap { position: relative; overflow: hidden; }

  /* Calque canvas derrière le contenu, non cliquable */
  body.newyear .ny-web {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 0;
  }
  body.newyear .ny-web canvas {
    width: 100%; height: 100%; display: block;
  }

  /* Le contenu de la section passe devant */
  body.newyear .ny-web-wrap > .ny-web-content { position: relative; z-index: 1; }

  /* ================================
     12) Décor en bas de section (optionnel)
     ================================ */
  body.newyear .ny-bottom-decor {
    position: relative;
    overflow: hidden;
  }

  body.newyear .ny-bottom-decor::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100px;
    background: url("/images_2/pumpkin.png") no-repeat bottom center;
    background-size: cover;
    pointer-events: none;
    z-index: 1;
  }

/* ================================
  Fond chaleureux pour sections alternées
  ================================ */
body.newyear .ny-gradient-warm {
  background:
    radial-gradient(700px at top center, rgba(30, 58, 138, 0.10), transparent 70%),
    radial-gradient(700px at bottom center, rgba(255, 215, 0, 0.12), transparent 70%),
    #FAFAFA;
  color: #1a1a1a;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ================================
   Style pour le prix barré dans les CTA
   ================================ */
.cta-booking .price-strike,
button .price-strike {
    text-decoration: line-through;
    color: #ffffff !important;
    font-weight: 700;
    margin: 0 0.25rem;
    opacity: 0.8;
}

.cta-booking strong,
button strong {
    color: var(--ny-gold) !important;
    font-weight: 900;
    font-size: 1.00em;
}

.cta-booking {
    font-size: 0.75rem !important;
}
