/* =====================
   GLOBAL
===================== */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1c1c1c;
  line-height: 1.7;
  background: #f5f5f5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
}

/* =====================
   TYPOGRAPHY
===================== */

h1, h2 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
  margin-top: 0;
  
}

h3 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.5px;
  margin-top: 0;

}

p {
  font-size: 1.05rem;
  color: #333;
}

.section {
  padding: 30px 0;
  background: #fff;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}

/* =====================
   HEADER
===================== */

header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand img {
  height: 55px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.shop-name {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.shop-subtitle {
  color: #ccc;
  font-size: 0.85rem;
}

/* =====================
   NAVIGATION
===================== */

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: #c1121f;
}

.btn-header {
  background: #000 ;
  color: #fff;
  padding: 9px 18px;
  border-radius: 3px;
  font-weight: 600;
  text-align: center;
}

.btn-header:hover {
  background: #222;
  transform: translateY(-2px);
}



/* =====================
   BURGER
===================== */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* =====================
   HERO
===================== */

/* ===== HERO ===== */

.hero {
  position: relative;
  min-height: 50vh;   /* moins haut */
  padding: 40px 0;    /* moins d’espace interne */
  display: flex;
  align-items: center;
  background: url('/images/ski-hero.webp') center/cover no-repeat;
}

.hero-content {
  position: relative;
  max-width: 800px;
}



.hero h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-left: 20px;
  border-left: 6px solid #d50000;
}

.highlight {
  color: #d50000;
}

/* =====================
   BOUTONS GLOBAUX
===================== */

.btn,
.btn-main,
.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: #c1121f; /* rouge marque */
  color: #ffffff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
}

.btn:hover,
.btn-main:hover,
.btn-primary:hover {
  background: #a40000;
  transform: translateY(-3px);
}

/* =====================
   GRIDS
===================== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card,
.equipment-card,

.review-card.premium,
.local-item,
.info-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* =====================
   RENTAL LIST
===================== */

.rental-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* =====================
   ITEM
===================== */

.rental-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;

  background: #fff;              /* fond blanc */
  padding: 20px;                 /* espace interne */
  border-radius: 18px;           /* coins arrondis */
  box-shadow: 0 20px 60px rgba(0,0,0,0.06); /* ombre douce */
margin-bottom: 20px;
  align-items: start;
}

/* =====================
   LEFT COLUMN
===================== */

.rental-left {
  display: flex;
  flex-direction: column;
}

.rental-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1rem;
  color: #777;
  margin-bottom: 30px;
}

/* IMAGE */

.rental-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;

  
}

.photo-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

/* =====================
   RIGHT COLUMN
===================== */

.rental-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 40px;
}



/* =====================
   MOBILE
===================== */

@media (max-width: 900px) {

  .rental-item {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .rental-right {
    align-items: center;
    text-align: center;
  }

  .rental-left {
    text-align: center;
  }

}


/* =====================
   FOOTER
===================== */

footer {
  background: #111;
  color: #fff;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  gap: 80px;
  text-align: left;
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom .container {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}

footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #d50000;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    justify-content: center;
    text-align: center;
    gap: 30px;
  }
}

/* =====================
   MOBILE
===================== */

@media (max-width: 900px) {

  .nav {
    padding: 8px 0;
  }

  .brand img {
    height: 45px;
  }

  .shop-subtitle {
    display: none;
  }

  .burger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    display: none;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a {
    padding: 6px 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }


.hero {
  min-height: clamp(420px, 55vh, 650px);
  padding: clamp(30px, 5vw, 60px) 0;
}

  

}

/* =====================
   LOCAL AREAS
===================== */

.local-areas {
  background: #f8f8f8;
  padding: 30px 0;
}

.local-areas h2 {
  text-align: center;
  margin-bottom: 20px;
}

.local-areas > .container > p {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
  color: #555;
}

/* Grid */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* Cards */

.areas-grid div {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.areas-grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Titres quartiers */

.areas-grid h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  color: #d50000; /* rouge marque */
}

.local-item-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.local-item-link:hover .local-item {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* =====================
   EQUIPMENT CARD
===================== */

.equipment-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.equipment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.equipment-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.equipment-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.equipment-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #d50000; /* rouge accent */
}

/* Permet aux cartes de prendre toute la hauteur de la ligne */
.equipment-grid {
  align-items: stretch;
}

/* Le contenu prend toute la hauteur */
.equipment-content {
  flex: 1;
}

/* Le bouton est poussé en bas */
.equipment-content a {
  margin-top: auto;
}

.equipment-content .btn-main {
  align-self: center;
  margin-top: auto;
}

/* =====================
   EQUIPMENT GRID
===================== */

.equipment-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

/* Desktop */
@media (min-width: 992px) {
  .equipment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet */
@media (min-width: 600px) and (max-width: 991px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 599px) {
  .equipment-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   INFO ITEM
===================== */

.info-item {
  background: #fff;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.info-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.07);
}

.info-item h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
}

.info-item p {
  color: #555;
}




/* =====================
   PRACTICAL INFO SECTION
===================== */

.practical-info {
  background: #ffffff;
  padding: 30px 0;
}

.practical-info h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* Grid */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Cards */

.info-item {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.info-item h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000; /* noir principal */
}

.info-item p {
  color: #555;
  line-height: 1.6;
}

/* =====================
   LOCAL SKI SECTION
===================== */

.local-ski {
  background: #f8f8f8;
  padding: 30px 0;
}

.local-ski h2 {
  text-align: center;
  margin-bottom: 20px;
}

.local-intro {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
  color: #555;
  font-size: 1.05rem;
}

/* Grid */

.local-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Cards */

.local-item {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.local-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.local-item h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #d50000; /* accent rouge */
}

.local-item p {
  color: #555;
  line-height: 1.6;
}

/* =====================
   CHOOSE SKI SECTION
===================== */

.choose-ski {
  background: #f8f8f8;
  padding: 30px 0;
}

.choose-ski h2 {
  text-align: center;
  margin-bottom: 20px;
}

.choose-intro {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
  color: #555;
  font-size: 1.05rem;
}

/* Grid */

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Cards */

.choose-item {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.choose-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.choose-item h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #d50000; /* accent rouge */
}

.choose-item p {
  color: #555;
  line-height: 1.6;
}

/* =====================
   CONTACT PREMIUM SECTION
===================== */

.contact-premium {
  padding: 80px 0;
  background: #f8f8f8;
}

.contact-premium .page-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2rem;
  font-weight: 800;
}

/* =====================
   CONTACT CARD
===================== */

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
}

/* =====================
   CONTACT LEFT
===================== */

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-left h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
}

/* =====================
   INFO BLOCK
===================== */

.info-block {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.info-block:last-child {
  border-bottom: none;
}

.info-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #d50000;
  margin-bottom: 8px;
}

.info-block p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* =====================
   CONTACT LINK
===================== */

.contact-link {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-link:hover {
  color: #d50000;
  text-decoration: underline;
}

/* =====================
   HOURS BLOCK
===================== */

.hours-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  margin-top: 20px;
}

/* =====================
   SEASON
===================== */

.season {
  margin-bottom: 25px;
}

.season:last-child {
  margin-bottom: 0;
}

.season h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #d50000;
  margin-bottom: 8px;
}

.season p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

/* =====================
   WINTER NOTE
===================== */

.winter-note {
  margin: 25px 0 0 0;
  padding: 15px 20px;
  background: #f8f8f8;
  border-left: 4px solid #d50000;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* =====================
   MOBILE
===================== */

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 40px;
  }
}

/* =====================
   CONTACT RIGHT (MAP)
===================== */

.contact-right {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  background: #fff;
}

/* Google Maps iframe */

.contact-right iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  display: block;
}

/* ===== BLOC MAGASIN ===== */

.shop-top {
  text-align: center;
  margin-bottom: 40px;
}

.shop-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch; /* important */
}

/* MAP */
.shop-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px; /* hauteur identique */
  border: 0;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* PHOTO */
.shop-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px; /* même hauteur que la map */
  object-fit: cover; /* évite la déformation */
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .shop-bottom {
    grid-template-columns: 1fr;
  }

  .shop-map iframe,
  .shop-photo img {
    min-height: 300px;
  }
}

/* ===== BARRE PREUVES PREMIUM ===== */

.proof-bar {
  background: #f5f7fa;
  padding: 30px 0;
}

.proof-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.proof-item {
  background: #fff;
  padding: 25px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.proof-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.proof-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.proof-item strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.proof-item span {
  font-size: 14px;
  color: #666;
}

@media (max-width: 900px) {
  .proof-container {
    grid-template-columns: 1fr;
  }
}

/* =====================
   ATELIER PAGE
===================== */

.atelier-section {
  background: #f8f8f8;
  padding: 5px 0;
  text-align: center;
}

.atelier-intro {
  max-width: 800px;
  margin: 0 auto 50px auto;
  text-align: center;
  color: #555;
}

.atelier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.atelier-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  text-align: center;
}

.atelier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}



.atelier-card h3 {
  color: #d50000;
  margin-bottom: 10px;
}

.highlight-card {
  border: 2px solid #d50000;
}

.btn-small {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-small:hover {
  background: #d50000;
}



/* =====================
   ATELIER PROCESS SECTION
===================== */

.atelier-process {
  background: #ffffff;
  padding: 80px 0;
}

.atelier-process h2 {
  text-align: center;
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.process-step {
  text-align: center;
  padding: 30px;
  border-radius: 16px;
  background: #f8f8f8;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: #d50000;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================
/* SERVICES HOME ALIGNEMENT */
===================== */
.service-card {
  padding: 30px 20px;
  text-align: center;
}

.service-card .equipment-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.service-card h3 {
  margin-bottom: 15px;
  text-align: center;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: #555;
}

/* =====================
   GAMMES GRID
===================== */

.gammes-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .gammes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 991px) {
  .gammes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .gammes-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   REVIEWS LAYOUT
===================== */

.reviews-layout {
  display: grid;
  gap: 40px;
  margin-top: 50px;
}

@media (min-width: 992px) {
  .reviews-layout {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }
}

.reviews-score {
  display: flex;
  justify-content: center;
}

.score-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.score-number {
  font-size: 3rem;
  font-weight: 800;
  color: #d50000;
}

.score-stars {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #f5b301;
}

.premium-score {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  text-align: center;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin-bottom: 20px;
}

.google-logo {
  width: 22px;
}

.score-main {
  margin: 10px 0;
}

.score-number {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}

.score-stars {
  color: #fbbc04;
  letter-spacing: 4px;
  font-size: 20px;
  margin-top: 8px;
}

.score-sub {
  margin-top: 10px;
  color: #666;
  font-size: 14px;
}

.google-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  transition: opacity 0.2s ease;
}

.google-link:hover {
  opacity: 0.6;
}

.review-card.premium {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.review-card.premium:hover {
  transform: translateY(-6px);
}

.review-stars {
  color: #fbbc04;
  font-size: 14px;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  font-size: 14px;
  color: #555;
}


/* ================= BADGES ================= */

.rental-item {
  position: relative;
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

/* Badge populaire */
.badge-populaire {
  background: #0891b2;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}


/* Badge premium */
.badge-premium {
  background: linear-gradient(
    135deg,
    #b9932f 0%,
    #f8e08e 40%,
    #e6c35c 60%,
    #b9932f 100%
  );
  color: #1a1a1a;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* =====================
   RENTAL PAGE WRAPPER
===================== */

.rental-page {
  background: #f5f5f5;
  padding: 5px 0 80px 0;
}

.rental-page h1 {
  text-align: center;
  margin-bottom: 20px;
}

.rental-page .intro {
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: center;
  color: #555;
}

/* =====================
   CTA FINAL
===================== */

.cta-final {
  margin-top: 80px;
  padding: 70px 40px;
  background: linear-gradient(135deg, #a40000, #c1121f);
  border-radius: 20px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.cta-final .btn-main {
  background: #ffffff;
  color: #a40000;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-final .btn-main:hover {
  background: #f5f5f5;
  transform: translateY(-3px);
}


/* =====================
   ATELIER TITLE SEPARATOR
===================== */

.atelier-card h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.atelier-card h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #c1121f; /* rouge marque */
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

/* =====================
   CONTACT FORM
===================== */

.contact-form-wrapper {
  margin-top: 80px;
  background: #ffffff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.contact-form-wrapper h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c1121f;
  box-shadow: 0 0 0 2px rgba(193,18,31,0.1);
}

/* FAQ ACCORDÉON */

.faq-category {
  margin-bottom: 60px;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: none;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  display: block;
}
.faq-question {
  width: 100%;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-category h2 {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
  padding-bottom: 16px;
}

.faq-category h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #d50000;
  margin: 12px auto 0 auto; /* centre la barre */
  border-radius: 2px;
}


/* =====================
   MESSAGE 50% OFF
===================== */

.hero-promo {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.75);
  padding: 16px 24px;
  border-radius: 14px;
}

.promo-badge {
  background: linear-gradient(
    135deg,
    #b9932f 0%,
    #f8e08e 40%,
    #e6c35c 60%,
    #b9932f 100%
  );
  color: #1a1a1a;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.hero-promo p {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}

.hero-promo strong {
  color: #ffffff;
}


.brands-grid {
  align-items: center;
}

.brand-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

/* =====================
   BRAND PAGE VENTE
===================== */

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.brand-card {
  background: #fff;
  border-radius: 14px;
  aspect-ratio: 3 / 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.brand-card img {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: 0.3s ease;
}

.brand-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.brands-title {
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}
/* =====================
   PAGE VENTE
===================== */

.vente-block {
  padding: 80px 0;
}

.alt-bg {
  background: #f8f8f8;
}

.vente-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vente-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.vente-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}


.vente-image img {
  width: 100%;
  border-radius: 14px;
}


.breadcrumb {
font-size:14px;
margin:20px 0;
color:#777;
}

@media (max-width: 900px) {
  .vente-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* =====================
   BREADCRUMB
===================== */
.breadcrumb {
font-size:14px;
color:#777;
padding:10px 0;
}

.breadcrumb a {
color:#555;
text-decoration:none;
}

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


/* =====================
   COOKIES
===================== */
.cookie-banner{
position:fixed;
bottom:20px;
left:50%;
transform:translateX(-50%);
background:#111;
color:#fff;
padding:18px 22px;
border-radius:12px;
box-shadow:0 12px 30px rgba(0,0,0,0.35);
max-width:640px;
width:calc(100% - 40px);
z-index:9999;
font-size:15px;
animation:cookieSlide 0.4s ease;
}

.cookie-inner{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
}

.cookie-text{
display:flex;
align-items:center;
gap:10px;
max-width:420px;
}

.cookie-text p{
margin:0;
line-height:1.5;
color:#fff;
}

.cookie-icon{
font-size:20px;
}

.cookie-banner a{
color:#4fc3f7;
text-decoration:underline;
}

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

.cookie-btn{
border:none;
padding:9px 16px;
border-radius:7px;
font-weight:600;
cursor:pointer;
font-size:14px;
transition:0.2s;
}

.cookie-btn.primary{
background:#2ecc71;
color:#fff;
}

.cookie-btn.secondary{
background:#444;
color:#fff;
}

.cookie-btn:hover{
transform:translateY(-1px);
opacity:0.95;
}

@keyframes cookieSlide{
from{
opacity:0;
transform:translate(-50%,20px);
}
to{
opacity:1;
transform:translate(-50%,0);
}
}

/* =====================
   LANGUAGES SWITCH
===================== */

.language-dropdown{
position:relative;
margin-left:20px;
}

.lang-current{
background:none;
border:none;
cursor:pointer;
padding:0;
}

.lang-current img{
width:28px;
height:20px;
border-radius:3px;
box-shadow:0 2px 6px rgba(0,0,0,0.2);
transition:transform .2s;
}

.lang-current:hover img{
transform:scale(1.05);
}

.lang-menu{
position:absolute;
right:0;
top:40px;
background:white;
border-radius:8px;
box-shadow:0 6px 20px rgba(0,0,0,0.15);
padding:8px;
display:none;
flex-direction:column;
gap:6px;
min-width:50px;
z-index:1000;
}

.lang-menu a{
display:block;
padding:4px;
}

.lang-menu img{
width:28px;
height:20px;
border-radius:3px;
transition:transform .15s;
}

.lang-menu img:hover{
transform:scale(1.08);
}

.language-dropdown.open .lang-menu{
display:flex;
}