/* ══════════════════════════════════════════
   SYSTÈME DE COULEURS
   Règle : utiliser uniquement ces valeurs
   ══════════════════════════════════════════ */
:root {
  --or:       #c9a84c;   /* or principal — accents, labels, bordures */
  --bordeaux: #711324;   /* bordeaux — header, hero backgrounds */
  --sombre:   #1a1a1a;   /* quasi-noir — footer, sections sombres  */
  --chaud:    #f8f5f0;   /* blanc chaud — fonds de sections claires */
}

/* ══════════════════════════════════════════
   TYPOGRAPHIE
   Playfair Display → titres, logo, labels majuscules
   Inter           → corps de texte, UI
   ══════════════════════════════════════════ */

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
}

@font-face {
    font-family: 'Cocktail';
    src: url('/static/assets/fonts/RegioladisplayItalic-drovR.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/* ── Header cart icon ── */
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.75);
  font-size: 1.35rem;
  text-decoration: none;
  transition: color .2s;
}
.header-cart:hover {
  color: #c9a84c;
}
.header-cart__badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #8B0000;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  line-height: 1;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}


.hero2 {
position:absolute; 
top:0; 
left:330px; 
width:10%; 
height:80%; 
object-fit:cover; 
z-index:0;
}



h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5 {
  font-family: "Playfair Display", Georgia, serif;
}


@media (max-width: 991px) {
  .page-hero nav[aria-label="breadcrumb"] {
    margin-top: 6rem !important;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)); */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-image 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201,168,76,0.8) 50%,
    transparent 100%
  );
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201,168,76,0.8) 50%,
    transparent 100%
  );
  z-index: 10;
}

.site-header.scrolled {
  background-color: transparent !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;

}


/* Línea dorada inferior en el hero de detalle */
.hero-detail {
  position: relative;
}

.hero-detail::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201,168,76,0.8) 50%,
    transparent 100%
  );
}

/* font hero */
.titulo-republique {
    padding: 0 0.3em 0.2em 0; 

  font-family: 'Cocktail';
  font-size: 6rem;
  margin-top: 0;
  background: linear-gradient(
     180deg,
    #e0aa08 0%,     /* brillo fuerte arriba */
    #f7efd2 10%,
    #e88300 20%,
    #ffebb8 35%,
    #e88300 50%,    /* sombra profunda */
    #d4a017 65%,
    #ffe08c 80%,
    #fff9e0 100%    /* reflejo final */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.8)) drop-shadow(0 0 15px rgba(212,175,55,0.5));
}
.titulo-republique {
  text-decoration-line: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}


/* Tablet */
@media (max-width: 768px) {
  .titulo-republique {
    font-size: 3.8rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .titulo-republique {
    font-size: 3rem;
  }
}




.btn-reserver {
  display: inline-block;
  padding: 18px 48px;
  font-family: 'Arial', serif;  
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f0d080;
  background: linear-gradient(180deg,
    #7a0a0a 0%,
    #a51212 30%,
    #c11111 50%,
    #c01010 70%,
    #7a0a0a 100%
  );
  border-radius: 5px !important; 

  cursor: pointer;
  box-shadow:
  
  
    0 4px 12px rgba(0,0,0,0.7);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  transition: filter 0.15s, transform 0.1s;
}

.btn-reserver:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.btn-reserver:active {
  transform: translateY(1px);
  filter: brightness(0.9);
}




/* ══════════════════════════════════════════
   BOUTONS
   ══════════════════════════════════════════ */

/* Contour or — sur fonds sombres (hero, header) */
.btn-gold {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  background-color: transparent;
  color: var(--or);
  border: 1px solid var(--or);
  transition: background-color .25s ease, color .25s ease;
}
.btn-gold:hover {
  background-color: var(--or);
  color: #fff;
  border-color: var(--or);
}

/* Plein or — sur fonds clairs */
.btn-gold-solid {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  background-color: var(--or);
  color: #fff;
  border: 1px solid var(--or);
  transition: background-color .25s ease, color .25s ease;
}
.btn-gold-solid:hover {
  background-color: #a8893c;
  border-color: #a8893c;
  color: #fff;
}

/* Plein bordeaux — CTA principal sur fonds clairs */
.btn-bordeaux {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  background-color: var(--bordeaux);
  color: #fff;
  border: 1px solid var(--bordeaux);
  transition: background-color .25s ease;
}
.btn-bordeaux:hover {
  background-color: #5a0e1c;
  border-color: #5a0e1c;
  color: #fff;
}

/* Alias pour compatibilité avec le code existant */
.btn-gold2 {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  background-color: transparent;
  color: var(--or);
  border: 1px solid var(--or);
  transition: background-color .25s ease, color .25s ease;
}
.btn-gold2:hover {
  background-color: var(--or);
  color: #fff;
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.navbar-collapse {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.site-header .nav-link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75) !important;
  transition: color .2s ease;
  padding: .5rem .8rem;
  
}
.site-header .nav-link:hover {
  color: var(--or) !important;
}



@media (max-width: 991px) {
  .navbar-nav .nav-item + .nav-item {
    border-top: none !important;
  }
}

/* ══════════════════════════════════════════
   HERO DE PAGE (infos, privatisation, théâtre)
   ══════════════════════════════════════════ */
.page-hero {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
}
.page-hero__crumb {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
}
.page-hero__crumb:hover {
  color: rgba(255, 255, 255, .75);
}
.page-hero__sub {
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 0;
}


/* ══════════════════════════════════════════
   IMAGES & BOUTONS — zéro arrondi
   ══════════════════════════════════════════ */
img {
  border-radius: 0;
}

.btn {
  border-radius: 0;
}

/* ══════════════════════════════════════════
   CARTES SPECTACLES
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-title { font-size: 3rem !important; }
}

.theatre-card-simple:hover .card-hover-info {
  transform: translateY(0) !important;
}
.theatre-card-simple:hover .card-text-below {
  opacity: 0;
}


.svg-linea {
  margin-top: -45px; /* móvil */
}

@media (min-width: 768px) {
  .svg-linea {
    margin-top: -85px; /* desktop */
  }
}


.card {
 
  background: #1a0a0a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3a1a1a;

}


