@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Raleway:wght@400;500;600;700&display=swap');

* {
  box-sizing: border-box;
}

:root {
  --tb-primary: #d4af37; /* Or luxe */
  --tb-secondary: #fff; /* Blanc */
  --tb-accent: #d4af37; /* Or pour les accents */
  --tb-gold: #f7d976; /* même doré que le titre */
  --tb-gold-soft: #f1d664;
  --tb-title-gradient: linear-gradient(135deg, #f7d976, #d4af37 45%, #f1d664 65%, #d4af37);
}

body {
  margin: 0;
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #000;
  color: #f5f5f5;
  min-height: 100vh;
}

/* Prevent horizontal page scroll when modals are open */
html, body {
  overflow-x: hidden;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

nav {
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  padding: 24px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  align-items: center;
}

.logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img {
  height: 50px;
  width: auto;
}

.brand-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: transparent;
  background: var(--tb-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

.hamburger {
  display: none !important;
  background: #050505;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
  width: 100%;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: none;
}

.hamburger::before {
  display: none;
}

.hamburger:hover {
  box-shadow: none;
}

.hamburger:active {
  box-shadow: none;
  background: #333;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, transform 0.25s ease;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

nav a:hover {
  color: var(--tb-primary);
  transform: translateY(-1px);
}

.section-subtitle {
  text-align: center;
  font-weight: 300;
  font-size: 1rem;
  margin: 10px auto 30px;
  color: transparent;
  background: var(--tb-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 1.5px;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
}


/* Menu mobile */
@media (max-width: 768px) {
  nav {
    flex-wrap: nowrap;
    padding: 15px 0;
  }

  .logo {
    margin-right: 0;
    justify-content: center;
    width: 100%;
  }

  .hamburger {
    display: block !important;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: #050505;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid #333;
    padding: 0 20px;
    z-index: 20;
  }

  .nav-links.active {
    max-height: 420px;
    padding: 15px 20px;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid #333;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

h1 {
  font-family: 'Cinzel', serif;
  color: transparent;
  text-align: center;
  margin: 5px 0;
  font-size: 2.5em;
  font-weight: 300;
  letter-spacing: 2px;
  background: var(--tb-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
}


.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 15px;
}

.image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.highlight-block {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(17, 17, 17, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 26px;
  border-radius: 16px;
  margin-bottom: 26px;
}

.highlight-block h2,
.highlight-block p {
  color: #fff;
}

.highlight-block h2 {
  color: transparent;
  margin-bottom: 14px;
  background: var(--tb-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  font-family: 'Cinzel', serif;
  color: transparent;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.5em;
  font-weight: 400;
  border-bottom: 2px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 18px;
  background: var(--tb-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

h3 {
  font-family: 'Cinzel', serif;
  color: transparent;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 400;
  background: var(--tb-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

h4 {
  font-family: 'Cinzel', serif;
  color: transparent;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 0.95em;
  font-weight: 500;
  background: var(--tb-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px;
  background: rgba(12, 12, 12, 0.98);
  margin-bottom: 24px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.25);
}

.section {
  margin-bottom: 34px;
}

.page-header {
  text-align: center;
  margin-bottom: 38px;
}

.page-header h1 {
  margin: 0;
  font-size: 3rem;
  letter-spacing: 2px;
}

.section-title,
.card h2,
.card h3,
.feature-card h3,
.highlight-block h2 {
  font-family: 'Cinzel', serif;
}

.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: transparent;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: left;
  background: var(--tb-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}


.card h2,
.card h3 {
  margin-top: 0;
  color: transparent;
  background: var(--tb-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.card h2 {
  font-size: 1.55em;
  letter-spacing: 0.02em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.18);
}

.card h3 {
  color: transparent;
}

.card p {
  color: #dde2e8;
  line-height: 1.8;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
}

.feature-card h3 {
  margin-top: 0;
  color: transparent;
  background: var(--tb-title-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.feature-card p {
  color: #d7d7d7;
  margin: 0;
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

.small {
  color: #999;
  font-size: 13px;
  margin-top: 12px;
}

label {
  display: block;
  color: #d4d4d4;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  font-size: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  font-family: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--tb-primary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

input::placeholder, textarea::placeholder {
  color: #777;
}

button {
  cursor: pointer;
  background: linear-gradient(135deg, #d4af37, #f7d976);
  color: #000;
  font-weight: 700;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  width: 100%;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.12);
}

button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 22px 40px rgba(212, 175, 55, 0.18);
}

button:active {
  transform: translateY(0);
  background: #f2ca56;
  color: #000;
}

.button-group a,
.button-group .button {
  width: auto;
}

a.button {
  display: inline-block;
  width: auto;
}

.small {
  color: #999;
  font-size: 13px;
  margin-top: 12px;
}



.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.small {
  color: #666;
  font-size: 13px;
  margin-top: 5px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #333;
  font-size: 14px;
}

th {
  background: #1a1a1a;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tr:hover {
  background: #1a1a1a;
}

.card-grid {
  display: grid;
  gap: 12px;
}

.section-title {
  margin-top: 0;
  color: var(--tb-primary);
}








.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.button-group {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.button {
  flex: 1;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}


.form-section {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 2px;
  margin-bottom: 20px;
  border: 1px solid #333;
}

.form-section h3 {
  color: #fff;
  margin-top: 0;
  font-size: 1.1em;
}

.message {
  padding: 12px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  font-size: 14px;
}

.message.success {
  background: #1a3a1a;
  color: #90ee90;
  border: 1px solid #90ee90;
}

.message.error {
  background: #3a1a1a;
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
}

.message.warning {
  background: #3a3a1a;
  color: #ffcc00;
  border: 1px solid #ffcc00;
}

@media (max-width: 768px) {
  .wrap {
    padding: 15px;
  }

  body {
    background: #050505;
  }

  h1 {
    font-size: 1.8em;
    margin: 20px 0;
  }

  h2 {
    font-size: 1.2em;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .card {
    padding: 20px;
  }

  .button-row,
  .nav-links {
    justify-content: center;
  }

  .button-group a,
  .button-group .button {
    width: 100%;
  }

  .grid2,
  .grid3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-section {
    padding: 15px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }

  table {
    font-size: 13px;
  }

  th, td {
    padding: 10px;
  }

  button {
    padding: 12px 24px;
  }

  .legal-footer {
    font-size: 0.85em;
    padding: 12px 10px;
  }

}

/* Links */
a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s;
}

a:hover {
  color: #999;
}

/* Maps */

/* Footer Banner */
.legal-footer {
  margin-top: 40px;
  padding: 14px 16px;
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9em;
  color: #999;
}

.legal-footer a {
  color: var(--tb-primary);
  text-decoration: none;
  transition: color 0.25s ease;
  margin: 0 8px;
}

.legal-footer a:hover {
  color: #f0c850;
}

.legal-footer-divider {
  color: rgba(255, 255, 255, 0.12);
  margin: 0 4px;
}



th, td {
  border: 1px solid #333;
  padding: 8px;
  text-align: left;
}
