.contact-form-wrapper, .salle-card {
  background: #FFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-section, .game-modes, .video-section {
  padding: 80px 40px;
}

.mentions-section, .contact-section, .panier-section, .produit-section {
  padding: 120px 40px 80px;
  background-color: #f5f5f5;
}

.mentions-container h1, .contact-info h1, .panier-container h1, .produit-info h1 {
  font-size: 42px;
  font-weight: 900;
  color: #000;
  margin-bottom: 20px;
}

.btn-hero, .btn-reservation {
  background-color: #FAD02C;
  color: #000;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.btn-hero:hover, .btn-reservation:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(250, 208, 44, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-yellow: #FAD02C;
  --black: #000;
  --white: #FFF;
  --dark-bg: #1a1a1a;
  --gray: #666;
  --light-gray: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #FFF;
  color: #000;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

::-moz-selection {
  background-color: #FAD02C;
  color: #000;
}

::selection {
  background-color: #FAD02C;
  color: #000;
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(-25px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.05);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes letterFall {
  0% {
    transform: translateY(0);
    color: #FFF;
    opacity: 1;
  }
  25% {
    transform: translateY(50px);
    color: #FFF;
    opacity: 0;
  }
  50% {
    transform: translateY(-25px);
    color: #FAD02C;
    opacity: 0;
  }
  75% {
    transform: translateY(3px);
    color: #FAD02C;
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    color: #FAD02C;
    opacity: 1;
  }
}
@keyframes arrow_color {
  0%, 100% {
    fill: #000;
  }
  50% {
    fill: #fff;
  }
}
.header {
  background-color: #000;
  padding: 0 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  height: 70px;
}

.logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo-text {
  font-size: 26px;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  list-style: none;
}
.nav-links a {
  color: #FFF;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FAD02C;
  transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.nav-links a:hover, .nav-links a.active {
  color: #FAD02C;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer {
  background-color: #000;
  color: #FFF;
  padding: 60px 40px 30px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.footer-logo-img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-logo span {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
}
.footer-links {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.footer-links a:hover {
  color: #FAD02C;
}
.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
.footer-social a {
  color: #FFF;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.footer-social a:hover {
  color: #FAD02C;
  transform: scale(1.08);
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.btn-reservation {
  padding: 12px 28px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-hero {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
.btn-hero:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(250, 208, 44, 0.4);
}

.btn-salle {
  display: block;
  text-align: center;
  background-color: #000;
  color: #FFF;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.btn-salle:hover {
  background-color: #FAD02C;
  color: #000;
  transform: translateY(-2px);
}

.btn-supprimer {
  color: #dc3545;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.btn-supprimer:hover {
  transform: scale(1.15);
}

.btn-commander {
  width: 100%;
  margin-top: 20px;
}

.btn-vider {
  display: block;
  text-align: center;
  color: #dc3545;
  margin-top: 15px;
  font-size: 14px;
}
.btn-vider:hover {
  text-decoration: underline;
}

.cta-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 35px;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  background: #FAD02C;
  box-shadow: 6px 6px 0 black;
  transform: skewX(-15deg);
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  overflow: visible;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cta-hero:focus {
  outline: none;
}
.cta-hero:hover {
  box-shadow: 8px 8px 0 white;
  transform: skewX(-15deg) scale(1.03);
}
.cta-hero:hover .cta-arrows {
  margin-right: 25px;
}
.cta-hero:hover .arrow-one {
  transform: translateX(0);
  animation: arrow_color 1.2s infinite 0.6s;
}
.cta-hero:hover .arrow-two {
  transform: translateX(0);
  animation: arrow_color 1.2s infinite 0.4s;
}
.cta-hero:hover .arrow-three {
  animation: arrow_color 1.2s infinite 0.2s;
}

.cta-text {
  transform: skewX(15deg);
  display: inline-block;
  white-space: nowrap;
}

.cta-arrows {
  width: 50px;
  height: 20px;
  margin-left: 20px;
  margin-right: 0;
  transform: skewX(15deg);
  overflow: visible;
  transition: margin-right 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cta-arrows svg {
  overflow: visible;
}

.arrow-one,
.arrow-two,
.arrow-three {
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), fill 0.4s ease;
}

.arrow-one {
  transform: translateX(-60%);
}

.arrow-two {
  transform: translateX(-30%);
}

.arrow-three {
  transform: translateX(0);
}

.cart-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  padding: 8px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.cart-icon:hover {
  color: #FAD02C;
  transform: scale(1.08);
}
.cart-icon svg {
  width: 24px;
  height: 24px;
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FAD02C;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
}

.alert-success,
.alert-error {
  padding: 15px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
}

.reservation-form {
  background: #FFF;
  padding: 30px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #eee;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FAD02C;
  box-shadow: 0 0 0 3px rgba(250, 208, 44, 0.15);
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  color: #FFF;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: 70px;
  background-image: url("../img2/image.png");
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #FFF;
}
.hero-content .btn-hero {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}
.hero-title {
  font-size: 120px;
  font-weight: 900;
  letter-spacing: 10px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: titleReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(250, 208, 44, 0.3) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}
.hero-subtitle {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.title-main {
  display: inline;
}

.title-k {
  display: inline-block;
  transform-origin: top center;
  animation: letterFall 3s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

.video-section {
  background-color: #1a1a1a;
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.plank-concept {
  background-color: #000;
  padding: 80px 40px 100px;
  text-align: center;
}
.plank-concept-title {
  font-size: 48px;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.plank-concept-subtitle {
  font-size: 18px;
  color: #FAD02C;
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 400;
}

.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.polaroid-card {
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.polaroid-card:hover {
  transform: translateY(-8px);
}
.polaroid-card:hover .polaroid-image {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.polaroid-card:hover .polaroid-title {
  color: #FAD02C;
  transform: scale(1.02);
}
.polaroid-card:nth-child(1) .polaroid-frame {
  transform: rotate(-5deg);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.polaroid-card:nth-child(1):hover .polaroid-frame {
  transform: rotate(0) scale(1.03);
  box-shadow: 0 20px 40px rgba(250, 208, 44, 0.25);
}
.polaroid-card:nth-child(2) .polaroid-frame {
  transform: rotate(0deg);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.polaroid-card:nth-child(2):hover .polaroid-frame {
  transform: rotate(0) scale(1.03);
  box-shadow: 0 20px 40px rgba(250, 208, 44, 0.25);
}
.polaroid-card:nth-child(3) .polaroid-frame {
  transform: rotate(5deg);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.polaroid-card:nth-child(3):hover .polaroid-frame {
  transform: rotate(0) scale(1.03);
  box-shadow: 0 20px 40px rgba(250, 208, 44, 0.25);
}
.polaroid-card .polaroid-title {
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.polaroid-frame {
  position: relative;
  background-color: #1a1a1a;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 25px;
  display: inline-block;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
}

.polaroid-tape-top {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  z-index: 10;
}

.polaroid-image {
  width: 220px;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  display: block;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.polaroid-title {
  font-size: 22px;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.polaroid-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.concept-cta {
  margin-top: 60px;
}

.game-modes {
  background-color: #1a1a1a;
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mode-card {
  background: linear-gradient(145deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #333;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.mode-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}
.mode-card:hover .mode-image img {
  transform: scale(1.05);
}
.mode-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #FAD02C;
  margin-bottom: 15px;
}
.mode-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.mode-image {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mode-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.quote-section {
  background-color: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(ellipse at center, rgba(250, 208, 44, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.quote {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.quote p {
  font-size: 32px;
  font-weight: 600;
  color: #FFF;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.quote-mark {
  font-size: 80px;
  font-weight: 900;
  color: #FAD02C;
  line-height: 0;
  position: relative;
  top: 20px;
  opacity: 0.5;
}
.quote-mark-end {
  top: 40px;
}

.quote-highlight {
  color: #FAD02C;
  font-weight: 700;
}

.catalogue-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../img2/image.png");
  height: 40vh;
  min-height: 300px;
  margin-top: 70px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
.catalogue-hero-content h1 {
  font-size: 60px;
  font-weight: 900;
  color: #FFF;
  margin-bottom: 15px;
  letter-spacing: 4px;
}
.catalogue-hero-content p {
  font-size: 20px;
  color: #FAD02C;
}

.catalogue-section {
  background-color: #f5f5f5;
  padding: 60px 40px;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.salle-card {
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.salle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.salle-card:hover .salle-image img {
  transform: scale(1.05);
}

.salle-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.salle-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.salle-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.salle-prix {
  background-color: #FAD02C;
  color: #000;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 16px;
}

.salle-content {
  padding: 25px;
}
.salle-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
.salle-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.salle-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
}
.salle-info span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.salle-info svg {
  color: #FAD02C;
}

.produit-section {
  padding-top: 120px;
  padding-bottom: 60px;
}

.produit-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.produit-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.produit-image img {
  width: 100%;
  height: auto;
  display: block;
}

.produit-description {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.produit-details {
  background: #FFF;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  color: #666;
  font-size: 14px;
}

.detail-value {
  font-weight: 700;
  color: #000;
  font-size: 16px;
}

.back-link {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
.back-link a {
  color: #666;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.back-link a:hover {
  color: #FAD02C;
}

.panier-section {
  min-height: calc(100vh - 70px);
}

.panier-container {
  max-width: 1000px;
  margin: 0 auto;
}
.panier-container h1 {
  margin-bottom: 40px;
  text-align: center;
}

.panier-vide {
  text-align: center;
  padding: 60px 20px;
  background: #FFF;
  border-radius: 12px;
}
.panier-vide-icon {
  font-size: 80px;
  margin-bottom: 20px;
}
.panier-vide p {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}

.panier-content {
  display: grid;
  gap: 30px;
}

.panier-items {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 20px;
}

.panier-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  background: #FFF;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.panier-item img {
  width: 100px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.panier-item-info {
  flex: 1;
}
.panier-item-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.panier-item-details {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #666;
}
.panier-item-prix {
  text-align: right;
}
.panier-item-prix .prix {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  display: block;
}
.panier-item-prix .prix-detail {
  font-size: 12px;
  color: #666;
}

.panier-summary {
  background: #FFF;
  padding: 30px;
  border-radius: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}
.summary-row.total {
  font-weight: 700;
  font-size: 20px;
  border-bottom: none;
  color: #000;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
}

.info-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.info-item svg {
  flex-shrink: 0;
  color: #FAD02C;
}
.info-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.info-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.contact-form-wrapper {
  padding: 40px;
}
.contact-form-wrapper .alert-success {
  text-align: center;
  padding: 40px;
}
.contact-form-wrapper .alert-success h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #155724;
}

.contact-form button {
  width: 100%;
}

.mentions-container {
  max-width: 900px;
  margin: 0 auto;
}
.mentions-container h1 {
  margin-bottom: 40px;
  text-align: center;
}

.mention-block {
  background: #FFF;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.mention-block h2 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}
.mention-block p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}
.mention-block ul {
  list-style: disc;
  margin-left: 20px;
}
.mention-block li {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 80px;
  }
  .polaroid-grid {
    gap: 30px;
  }
  .modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .produit-container,
  .contact-container {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0 20px;
  }
  .nav {
    flex-wrap: wrap;
    height: auto;
    padding: 15px 0;
    gap: 15px;
  }
  .logo {
    order: 1;
  }
  .nav-actions {
    order: 2;
    gap: 15px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .btn-reservation {
    padding: 10px 20px;
    font-size: 12px;
  }
  .hero {
    margin-top: 130px;
  }
  .hero-title {
    font-size: 60px;
    letter-spacing: 5px;
  }
  .hero-subtitle {
    font-size: 24px;
  }
  .polaroid-grid,
  .modes-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .plank-concept-title,
  .section-title {
    font-size: 32px;
  }
  .polaroid-card:nth-child(1) .polaroid-frame {
    transform: rotate(0);
  }
  .polaroid-card:nth-child(2) .polaroid-frame {
    transform: rotate(0);
  }
  .polaroid-card:nth-child(3) .polaroid-frame {
    transform: rotate(0);
  }
  .catalogue-hero-content h1 {
    font-size: 40px;
  }
  .panier-item {
    flex-direction: column;
    text-align: center;
  }
  .panier-item-prix {
    text-align: center;
  }
  .quote p {
    font-size: 22px;
  }
  .quote-mark {
    font-size: 50px;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 0 15px;
  }
  .logo-text {
    font-size: 20px;
  }
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  .nav-links {
    flex-wrap: wrap;
    gap: 15px;
  }
  .nav-links a {
    font-size: 12px;
  }
  .hero-title {
    font-size: 40px;
    letter-spacing: 5px;
  }
  .hero-title::after {
    display: none;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  @keyframes titleReveal {
    0% {
      opacity: 0;
      transform: translateY(-15px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes letterFall {
    0% {
      transform: translateY(0);
      color: #FFF;
      opacity: 1;
    }
    25% {
      transform: translateY(50px);
      color: #FFF;
      opacity: 0;
    }
    50% {
      transform: translateY(-25px);
      color: #FAD02C;
      opacity: 0;
    }
    75% {
      transform: translateY(3px);
      color: #FAD02C;
      opacity: 1;
    }
    100% {
      transform: translateY(0);
      color: #FAD02C;
      opacity: 1;
    }
  }
  .btn-hero {
    padding: 14px 30px;
    font-size: 14px;
  }
  .cta-hero {
    padding: 12px 25px;
    font-size: 16px;
  }
  .cta-hero:hover .cta-arrows {
    margin-right: 25px;
  }
  .cta-arrows {
    margin-left: 15px;
  }
  .plank-concept-title,
  .section-title {
    font-size: 28px;
  }
  .produit-info h1,
  .panier-container h1,
  .contact-info h1,
  .mentions-container h1 {
    font-size: 32px;
  }
  .quote p {
    font-size: 18px;
  }
  .quote-mark {
    font-size: 40px;
  }
}

/* ==========================================
   CAROUSEL STYLES
   ========================================== */

.carousel-section {
  padding: 80px 40px;
  background-color: #1a1a1a;
  overflow: hidden;
}

.carousel-section .section-title {
  color: #FFF;
  text-align: center;
  margin-bottom: 10px;
}

.carousel-section .section-subtitle {
  color: #999;
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-track-container {
  overflow: hidden;
  flex: 1;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.carousel-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #FFF;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.carousel-slide:hover .slide-overlay {
  transform: translateY(0);
  opacity: 1;
}

.slide-overlay h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #FAD02C;
}

.slide-overlay p {
  font-size: 16px;
  color: #CCC;
}

.carousel-btn {
  background: #FAD02C;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: #000;
  z-index: 10;
}

.carousel-btn:hover {
  background: #FFF;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(250, 208, 44, 0.4);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #444;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: #666;
}

.carousel-dot.active {
  background: #FAD02C;
  transform: scale(1.2);
}

/* Carousel Responsive */
@media (max-width: 768px) {
  .carousel-section {
    padding: 60px 20px;
  }
  
  .carousel-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .carousel-track-container {
    order: 1;
    width: 100%;
  }
  
  .carousel-btn {
    display: none;
  }
  
  .carousel-dots {
    order: 2;
  }
  
  .slide-overlay {
    transform: translateY(0);
    opacity: 1;
    padding: 20px 15px;
  }
  
  .slide-overlay h3 {
    font-size: 20px;
  }
  
  .slide-overlay p {
    font-size: 14px;
  }
  
  /* Enable touch swipe on mobile */
  .carousel-track-container {
    touch-action: pan-x;
  }
}

/*# sourceMappingURL=site.css.map */