html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #0f0f0f;
  color: #f5f0e8;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  padding-top: 64px;
}

img {
  max-width: 100%;
}

.hero,
section,
footer {
  max-width: 100%;
  overflow-x: clip;
}

.navbar {
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 1050;
}

.navbar .nav-link.active {
  color: #d4af37 !important;
  font-weight: 700;
}

.mobile-menu {
  --bs-offcanvas-width: 320px;
  max-width: 82vw;
  background: rgba(15, 15, 15, 0.96);
  color: #f5f0e8;
  border-left: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(8px);
}

.mobile-menu .offcanvas-title {
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-menu-links {
  gap: 10px;
}

.mobile-menu .nav-link {
  color: #f5f0e8;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 12px 0;
}

.mobile-menu .nav-link:hover {
  color: #d4af37;
}

.offcanvas-backdrop.show {
  opacity: 0.45;
}
.hero {
    min-height: calc(100vh - 58px);
    padding: 80px 0;
    background:
        radial-gradient(circle at 75% 40%, rgba(212, 175, 55, 0.12), transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(120, 20, 20, 0.15), transparent 30%),
        linear-gradient(135deg, #0f0f0f 0%, #151515 45%, #050505 100%);
    overflow: hidden;
}

.hero-label {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    text-transform: uppercase;
    max-width: 600px;
}

.hero-subtitle {
    color: #d8d0c2;
    font-size: 1.2rem;
    max-width: 650px;
    margin-bottom: 32px;
}

.btn-gold {
    background-color: #d4af37;
    color: #0f0f0f;
    border: 1px solid #d4af37;
    font-weight: 700;
}

.btn-gold:hover {
    background-color: #f5f0e8;
    border-color: #f5f0e8;
    color: #0f0f0f;
}

.hero-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  filter: blur(60px);
  z-index: 0;
}

.hero-model {
    position: relative;
    z-index: 1;
    max-height: 740px;
    width: auto;
    display: block;
    transform: translateX(40px);
    filter: drop-shadow(0 35px 60px rgba(0, 0, 0, 0.75));
}

.section-padding {
  padding: 100px 0;
}

.section-label {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-text {
  color: #d8d0c2;
  font-size: 1.1rem;
  max-width: 650px;
}

.style-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;
  color: #f5f0e8;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.style-card .card-body {
  padding: 32px;
  padding-right: 130px;
  position: relative;
  min-height: 190px;
}

.style-chip-wrap {
  position: absolute;
  right: 15px;
  bottom: 28px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.style-chip-wrap::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  filter: blur(18px);
  z-index: 0;
}

.style-chip {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  opacity: 0.95;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}
.style-chip-light {
  filter:
    invert(1)
    brightness(0.85)
    drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}


.gallery-section {
  background-color: #0b0b0b;
  padding-top: 80px;
  padding-bottom: 80px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background-color: #151515;
  aspect-ratio: 16 / 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay span {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-overlay p {
  color: #f5f0e8;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.artists-section {
  background-color: #0f0f0f;
  padding-top: 70px;
  padding-bottom: 70px;
}

.artist-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
}

.artist-image {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.artist-content {
  padding: 20px 24px 22px;
}

.artist-content h3 {
  margin-bottom: 6px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #f5f0e8;
}

.artist-role {
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 8px;
}

.artist-text {
  color: #d8d0c2;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.scroll-target {
  scroll-margin-top: 290px;
}

.reviews-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.08), transparent 25%),
    #0b0b0b;
}

.review-card {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;

  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
}

.review-stars {
  color: #d4af37;
  letter-spacing: 3px;
  margin-bottom: 24px;
  font-size: 1rem;
}

.review-text {
  color: #f5f0e8;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

.review-author {
  color: #d8d0c2;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: auto;
}

.booking-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.08), transparent 25%),
    #0f0f0f;
  padding-top: 80px;
  padding-bottom: 80px;
}

.booking-form {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.booking-form .form-label {
  color: #f5f0e8;
  font-weight: 700;
  margin-bottom: 8px;
}

.booking-form .form-control,
.booking-form .form-select {
  background-color: #151515;
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: #f5f0e8;
  padding: 12px 14px;
  border-radius: 12px;
}

.booking-form .form-control::placeholder {
  color: rgba(245, 240, 232, 0.45);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  background-color: #151515;
  color: #f5f0e8;
  border-color: #d4af37;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.15);
}

.contact-section {
  background-color: #0b0b0b;
}

.contact-card,
.map-placeholder {
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.contact-card {
  padding: 32px;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item:last-of-type {
  margin-bottom: 32px;
}

.contact-label {
  display: block;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-item p {
  color: #f5f0e8;
  margin: 0;
  line-height: 1.6;
}

.contact-socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-socials a {
  color: #f5f0e8;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
  padding-bottom: 4px;
}

.contact-socials a:hover {
  color: #d4af37;
}

.map-placeholder {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(15, 15, 15, 0.75), rgba(15, 15, 15, 0.85)),
    repeating-linear-gradient(
      45deg,
      rgba(212, 175, 55, 0.08) 0,
      rgba(212, 175, 55, 0.08) 1px,
      transparent 1px,
      transparent 18px
    );
  text-align: center;
}

.map-title {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 8px;
}

.map-text {
  color: #d8d0c2;
  margin: 0;
}

.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background-color: #080808;
}

.footer-logo {
  color: #d4af37;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-text {
  color: #d8d0c2;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #f5f0e8;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #d4af37;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .hero {
    position: relative;
    min-height: auto;
    padding: 70px 0 260px;
    overflow: hidden;
  }

  .hero-title {
    font-size: clamp(3.4rem, 8vw, 4.8rem);
    max-width: 560px;
  }

  .hero-subtitle {
    max-width: 520px;
  }

  .hero-visual {
    position: absolute;
    right: 24px;
    bottom: 0;
    width: min(40vw, 300px);
    height: 420px;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
  }

  .hero-model {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    transform: none;
    opacity: 0.5;
  }
}

@media (max-width: 991px) {
  .hero {
    position: relative;
    align-items: flex-start !important;
    min-height: auto;
    padding: 36px 0 150px;
    overflow: hidden;
  }

  .hero .container {
    position: static;
  }

  .hero .col-lg-6:first-child {
    position: relative;
    z-index: 2;
  }

  .hero .col-lg-6:last-child {
    position: static;
    margin-top: 0 !important;
  }

  .hero-title {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
    max-width: 340px;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 340px;
    margin-bottom: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px !important;
  }

  .hero-actions .btn {
    max-width: 100%;
    white-space: normal;
  }

  .hero-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(52vw, 220px);
    height: 180px;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }

  .hero-visual::before {
    width: 210px;
    height: 210px;
    filter: blur(50px);
    opacity: 1;
  }

  .hero-model {
    width: 100%;
    height: auto;
    max-height: none;
    transform: none;
    opacity: 1;
  }

  .section-padding {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {
  .navbar-brand {
    max-width: calc(100vw - 95px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
  }

  .hero {
    padding-top: 32px;
    padding-bottom: 135px;
  }

  .hero-label {
    font-size: 0.78rem;
  }

  .hero-title {
    font-size: clamp(2.25rem, 12vw, 3rem);
    max-width: 320px;
  }

  .hero-subtitle {
    max-width: 320px;
  }

  .hero-visual {
    width: min(48vw, 180px);
    height: 160px;
  }

  .section-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }
}

@media (max-width: 575px) {
  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: fit-content;
    max-width: 100%;
  }

  .btn-gold {
    white-space: normal;
  }
}

@media (max-width: 575px) {
  .footer {
    padding: 32px 0 36px;
  }

  .footer-logo {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .footer-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 10px;
  }

  .footer-links li {
    width: calc(50% - 5px);
  }

  .footer-links a {
    display: block;
    padding: 10px 12px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 999px;
    text-align: center;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
  }
}

#accueil{
      scroll-padding-top: 74px;

}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .hero {
    position: relative;
    min-height: auto;
    padding: 70px 0 300px;
    overflow: hidden;
  }

  .hero-title {
    font-size: clamp(3.4rem, 8vw, 4.8rem);
    max-width: 560px;
  }

  .hero-subtitle {
    max-width: 520px;
  }

  .hero-visual {
    position: absolute;
    right: 32px;
    bottom: 0;
    width: min(42vw, 340px);
    height: 430px;
    min-height: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
    pointer-events: none;
  }

  .hero-model {
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    transform: none;
    opacity: 0.65;
  }
}