    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --gold: #C9A84C;
      --gold-light: #e8c97a;
      --cream: #f5efe6;
      --dark: #1a1109;
      --glass: rgba(26, 17, 9, 0.55);
      --glass-border: rgba(201, 168, 76, 0.35);
    }

    html, body { height: 100%; font-family: 'Raleway', sans-serif; }

    body {
      background: var(--dark);
      color: var(--cream);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow-x: hidden;
    }

/* ── Fond ── */
.bg {
  position: fixed;
  inset: 0;
  background:
     url('../img/juin.jpeg') center/cover no-repeat; /* Chemin local mis à jour */
  z-index: 0;
  transition: background-image 0.5s ease;
  
}

.bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.btn-luxe {
  display: inline-flex !important; /* Force l'affichage */
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  color: #f5f0e8 !important;
  padding: 16px 32px;
  border-radius: 2px;
  border: 1px solid #c9a84c; /* Ajout d'une bordure dorée fine */
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  z-index: 5; /* Assure que le bouton est au-dessus du fond */
}

.btn-luxe span {
  position: relative;
  z-index: 2; /* Texte au-dessus du fond doré au survol */
}

.btn-luxe::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #c9a84c;
  transition: width 0.4s ease;
  z-index: 1;
}

.btn-luxe:hover::before {
  width: 100%;
}

.btn-luxe:hover {
  color: #1a1a1a !important;
}

/* Garde le texte et l'icône au-dessus de l'effet */
.btn-luxe span,
.btn-luxe i {
  position: relative;
  z-index: 1;
}

.btn-luxe i {
  font-size: 18px;
}

    /* ── Navbar ── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.25rem 2rem;
    /*  background: linear-gradient(to bottom, rgba(26,17,9,0.65) 0%, transparent 100%);*/
      animation: fadeIn 1s ease both;
    }

    .nav-left { flex: 1; }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    /* Bouton changer fond */
    .btn-change-bg {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    /*  background: rgba(26,17,9,0.55);*/
      border: 1px solid var(--glass-border);
      border-radius: 50px;
      padding: 8px 16px;
      font-family: 'Raleway', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: var(--gold-light);
      cursor: pointer;
      backdrop-filter: blur(10px);
      transition: background 0.25s, border-color 0.25s, transform 0.15s;
      white-space: nowrap;
    }

    .btn-change-bg:hover {
      background: rgba(201,168,76,0.2);
      border-color: var(--gold);
      transform: translateY(-1px);
    }

    .btn-change-bg svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

    #file-bg { display: none; }

    /* ── Logo ── */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-circle {
      width: 46px;
      height: 46px;
      border-radius: 50%;
    /*  border: 1.5px solid var(--glass-border);   background: rgba(26,17,9,0.65);*/
    
      backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: border-color 0.3s;
    }

    .logo:hover .logo-circle { border-color: var(--gold); }

    /* Quand un logo image est chargé, il remplace le SVG */
    .logo-circle img { width: 100%; height: 100%; object-fit: cover; display: none; }
    .logo-circle svg { width: 22px; height: 22px; fill: var(--gold); }

    .logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--cream);
      letter-spacing: 0.12em;
    }

    .logo-name em { color: var(--gold); font-style: italic; }

    /* ── Contenu principal ── */
    .container {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 7rem 1.5rem 4rem;
      text-align: center;
      gap: 2.5rem;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.15);
      border: 1px solid var(--glass-border);
      border-radius: 50px;
      padding: 6px 20px;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-light);
      backdrop-filter: blur(8px);
      animation: fadeIn 1.2s 0.2s ease both;
    }

    .badge::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.4; transform: scale(0.7); }
    }

    .brand { animation: fadeIn 1.2s 0.35s ease both; }

    .brand-name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 10vw, 7rem);
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--cream);
      line-height: 1;
    }

    .brand-name em { color: var(--gold); font-style: italic; }

    .brand-tagline {
      margin-top: 0.75rem;
      font-size: clamp(11px, 2vw, 14px);
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(245,239,230,0.55);
      font-weight: 300;
    }

    .divider {
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      max-width: 320px;
      animation: fadeIn 1.2s 0.5s ease both;
    }

    .divider::before, .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold-light), transparent);
      opacity: 0.4;
    }

    .divider span { font-size: 18px; color: var(--gold); opacity: 0.7; }

    .message {
      max-width: 420px;
      animation: fadeIn 1.2s 0.6s ease both;
    }

    .message h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.3rem, 4vw, 1.9rem);
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 0.75rem;
      line-height: 1.4;
    }

    .message p {
      font-size: 14px;
      color: rgba(245,239,230,0.6);
      line-height: 1.8;
      font-weight: 300;
    }

    .links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px;
      max-width: 520px;
      animation: fadeIn 1.2s 0.75s ease both;
    }

    
     .link-btn{
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 50px;
      padding: 12px 22px;
      font-family: 'Raleway', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--cream);
      backdrop-filter: blur(12px);
      transition: background 0.3s, border-color 0.3s, transform 0.2s, color 0.3s;
    }

    .upload-btn {
      font-size: 14px;
        display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 2px;
      padding: 12px 22px;
      font-family: 'Raleway', sans-serif;
      
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--cream);
      backdrop-filter: blur(12px);
      transition: background 0.3s, border-color 0.3s, transform 0.2s, color 0.3s;
    }
    
    .link-btn:hover , .upload-btn:hover { background: rgba(201,168,76,0.22); border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
    .link-btn svg { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }

    .link-btn.facebook:hover  { color: var(--gold-light); border-color: var(--gold); background: rgba(201,168,76,0.15); }
    .link-btn.instagram:hover   { color: var(--gold-light); border-color: var(--gold); background: rgba(201,168,76,0.15); }
    .link-btn.location:hover {color: var(--gold-light); background:rgba(201,168,76,0.22); border-color: var(--gold); background: rgba(201,168,76,0.15); }
    .link-btn.contact:hover  { color: var(--gold-light); border-color: var(--gold); background: rgba(201,168,76,0.15); }
    .link-btn.email:hover  { color: var(--gold-light); border-color: var(--gold); background: rgba(201,168,76,0.15); }


 .link-upload {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      background: var(--glass);
      border: 1px solid var(--glass-border);
    
      padding: 12px 22px;
      font-family: 'Raleway', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--cream);
      backdrop-filter: blur(12px);
      transition: background 0.3s, border-color 0.3s, transform 0.2s, color 0.3s;
      

    }


    .link-upload:hover {  color: var(--gold-light); border-color: var(--gold); background: rgba(201,168,76,0.15);}
    .link-upload svg { width: 18px; height: 18px; flex-shrink: 0; fill: currentColor; }

    footer {
      position: fixed;
      bottom: 1.5rem;
      center: 50%;
      transform: translateX(-50%);
      z-index: 2;
      font-size: 11px;
      letter-spacing: 0.12em;
     /* color: rgba(245,239,230,0.3);*/
     color:#000000;
      text-transform: uppercase;
      white-space: nowrap;
      animation: fadeIn 1.2s 1s ease both;
    }

    .toast {
      position: fixed;
      bottom: 3.8rem;
      left: 50%;
      transform: translateX(-50%) translateY(12px);
      background: rgba(26,17,9,0.85);
      border: 1px solid var(--gold);
      border-radius: 50px;
      padding: 9px 22px;
      font-size: 12px;
      color: var(--gold-light);
      backdrop-filter: blur(14px);
      opacity: 0;
      transition: opacity 0.35s, transform 0.35s;
      pointer-events: none;
      z-index: 20;
      white-space: nowrap;
      letter-spacing: 0.06em;
    }

    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

    @media (max-width: 500px) {
      nav { padding: 1rem 1.25rem; }
      .logo-name { display: none; }
      .btn-change-bg .btn-label { display: none; }
      .btn-change-bg { padding: 8px 12px; }
      .link-btn { padding: 11px 16px; font-size: 12px; gap: 8px; }
    }
    
