*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0b0b0b;
  --dark:    #141414;
  --charcoal:#1c1c1c;
  --orange:  #ff7a00;
  --orange2: #ff9a00;
  --orangeDark: #352819;
  --gold:    #ffb21f;
  --light:   #fff7ed;
  --white:   #ffffff;
}

html { scroll-behavior: smooth;  background-attachment: fixed;}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--light);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px 40px;
  overflow: hidden;
}

.hero a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 6px;
  font-size: .75rem;
}

.hero a:hover {
  text-decoration: underline;
}

.hero-bg {
  position: fixed;      /* au lieu de absolute */
  inset: 0;             /* occupe tout l'écran */
  z-index: -1;          /* derrière le contenu */
  pointer-events: none;
}

.hero-bg svg {
  width: 100%;
  height: 100%;
}


.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: radial-gradient(ellipse 70% 60% at 50% 100%,
    rgba(255,122,0,.22) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-logo {
  width: 130px;
  object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(255,178,31,.55));
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { filter: drop-shadow(0 0 28px rgba(255,178,31,.45)); }
  50%      { filter: drop-shadow(0 0 50px rgba(255,122,0,.8)); }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: .95;
  letter-spacing: 5px;
  background: linear-gradient(135deg, var(--orange2), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.hero-sub {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,247,237,.5);
  margin-bottom: 56px;
}

.hero-tagline {
  font-size: clamp(.85rem, 2.5vw, 1rem);
  font-weight: 300;
  color: rgba(255,247,237,.6);
  letter-spacing: .5px;
  margin-bottom: 10px;
}

/* ─── CARDS ─────────────────────────────────────── */
.cards {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.cardsunique {
  position: relative; z-index: 1;
  gap: 20px;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.cardsuniquecgpics {
  position: relative; z-index: 1;
  gap: 20px;
  width: 90%;
  margin: 0 auto;
  margin-top: 50px;
}

@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; max-width: 420px; }
}

.card {
  flex-direction: column;
  /*align-items: flex-start;*/
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,178,31,.14);
  border-radius: 14px;
  padding: 30px 26px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
  margin-bottom:30px;
}

.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,178,31,.38);
  box-shadow: 0 16px 48px rgba(255,122,0,.18);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.card-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
  margin:auto;
}

.card p {
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(255,247,237,.58);
  flex: 1;
  margin-bottom: 22px;
  width:100%;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s;
}

.card:hover .card-cta { gap: 14px; }
.card-cta::after { content: '\2192'; }

/* ─── CONTACT ─────────────────────────────────────── */
.contact-section {
  margin-top: 80px;
  padding: 60px 24px;
  text-align: center;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,178,31,0.12);
}

.contact-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, var(--orange2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.contact-sub {
  font-size: .9rem;
  color: rgba(255,247,237,.55);
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group { text-align: left; }

.form-group label {
  display: block;
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--gold);
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select,
.form-group option {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,178,31,.25);
  background: rgba(255,255,255,.05);
  color: var(--white);
  font-size: .95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(255,178,31,.35);
}

.contact-btn {
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border: none;
  border-radius: 8px;
  color: var(--black);
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,178,31,.25);
}

/* Style général identique aux inputs */
.form-group option {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,178,31,.25);
    background: rgba(255,255,255,.05);
    color: red;
    font-size: .95rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='%23ffb21f' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(255,178,31,.35);
}

.form-group select option {
    background: var(--orangeDark);
    color: var(--white);
}

.hidden-force {
    display: none !important;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  padding: 22px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,178,31,.1);
}

footer p {
  font-size: .75rem;
  color: rgba(255,247,237,.28);
  letter-spacing: 1px;
}

footer span { color: rgba(255,122,0,.7); }

footer a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 6px;
  font-size: .75rem;
}

footer a:hover {
  text-decoration: underline;
}

/* ─── PAGES LÉGALES ─────────────────────────────── */

.legal-wrapper {
  min-height: 100vh;
  background: var(--black);
  color: var(--light);
  display: flex;
  flex-direction: column;
}

.legal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,178,31,.18);
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-header img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.legal-header-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 3px;
  font-size: 1.4rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--orange2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-page {
  max-width: 900px;
  margin: 40px auto 60px;
  padding: 0 24px;
}

.legal-page h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--orange2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-page h2 {
  font-size: 1.1rem;
  margin-top: 26px;
  margin-bottom: 8px;
  color: var(--gold);
}

.legal-page p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,247,237,.8);
}

/* ─── COOKIES / RGPD ───────────────────────────── */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 12, 12, 0.96);
  border-top: 1px solid rgba(255,178,31,.4);
  color: var(--light);
  padding: 14px 18px;
  font-size: .8rem;
  display: none;
  z-index: 9999;
}

.cookie-banner p {
  margin-bottom: 8px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  font-size: .75rem;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#cookie-accept-all {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--black);
  font-weight: 700;
}

#cookie-reject-all {
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255,247,237,.4);
}

#cookie-customize {
  background: rgba(255,255,255,.06);
  color: var(--light);
}

/* Modal */

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.cookie-modal-content {
  background: #141414;
  border-radius: 10px;
  border: 1px solid rgba(255,178,31,.4);
  max-width: 420px;
  width: 90%;
  padding: 20px 22px;
  color: var(--light);
}

.cookie-modal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--orange2), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  margin: 14px 0;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.cookie-modal-actions button {
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  font-size: .8rem;
  border-radius: 4px;
}

#cookie-save {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--black);
  font-weight: 700;
}

#cookie-modal-close {
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255,247,237,.4);
}
