@charset "UTF-8";
:root {
  --gold: #D4AF37;
  --gold-light: #F4D03F;
  --gold-dark: #B8941E;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray: #333333;
  --light-gray: #f5f5f5;
  --medium-gray: #666666;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--gray);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ===== SECTIONS ===== */
.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--black);
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--medium-gray);
  text-align: center;
  margin-bottom: 3rem;
}

.gold-text {
  color: var(--gold);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.05);
}

.logo i {
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
  letter-spacing: 1px;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-nav-reserve {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  padding: 0.7rem 1.5rem !important;
  border-radius: 25px;
  font-weight: bold;
}

.btn-nav-reserve::after {
  display: none;
}

.btn-nav-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--black);
  margin: 3px 0;
  transition: var(--transition);
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu li {
    margin: 20px 0;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* ===== BOUTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-gold-large {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-gold-large:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-service {
  display: inline-block;
  padding: 10px 25px;
  background: var(--gold);
  color: var(--black);
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: var(--transition);
  margin-top: 10px;
}

.btn-service:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mouse {
  width: 25px;
  height: 45px;
  border: 2px solid var(--gold);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.wheel {
  width: 3px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}
/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.6)), url("https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: 3px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--light-gray);
}

/* PAGE HERO */
.page-hero {
  height: 50vh;
  min-height: 400px;
  background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url("https://images.unsplash.com/photo-1562322140-8baeececf3df?w=1920") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 70px;
}

.page-hero-content {
  color: var(--white);
}

.page-hero-content h1 {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.page-hero-content p {
  font-size: 1.3rem;
  color: var(--light-gray);
}

/* ===== PRÉSENTATION ===== */
.presentation-section {
  padding: 100px 0;
  background: var(--white);
}

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

.presentation-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gray);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 25px;
  background: var(--light-gray);
  border-radius: 15px;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--black);
}

.value-item h4 {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  margin: 0;
}

.presentation-image {
  position: relative;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.image-frame:hover img {
  transform: scale(1.1);
}

.gold-border {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 3px solid var(--gold);
  border-radius: 15px;
  pointer-events: none;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.parallax-section {
  position: relative;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
}

.parallax-section .container {
  position: relative;
  z-index: 1;
}

.services-section .section-title {
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--black);
  animation: float 3s ease-in-out infinite;
}

.service-card:nth-child(2) .service-icon {
  animation-delay: 0.5s;
}

.service-card:nth-child(3) .service-icon {
  animation-delay: 1s;
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.service-list {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.service-list li {
  color: var(--light-gray);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===== ZONES D'INTERVENTION ===== */
.zones-section {
  padding: 100px 0;
  background: var(--light-gray);
}

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

.zones-intro {
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 30px;
}

.zones-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.zone-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: var(--white);
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}

.zone-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.zone-item i {
  color: var(--gold);
  font-size: 1.2rem;
}

.zones-note {
  padding: 20px;
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--gold);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.zones-note i {
  color: var(--gold);
  font-size: 1.5rem;
}

.zones-map {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.map-container {
  position: relative;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

.map-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(212, 175, 55, 0.9);
  color: var(--black);
  padding: 10px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.map-overlay i {
  font-size: 1.1rem;
}

.map-placeholder {
  height: 500px;
  background: linear-gradient(135deg, var(--light-gray), var(--white));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.map-placeholder i {
  font-size: 5rem;
  margin-bottom: 20px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

/* ===== GALERIE PREVIEW ===== */
.gallery-preview-section {
  padding: 100px 0;
  background: var(--white);
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.gallery-preview-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 350px;
}

.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(212, 175, 55, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-preview-overlay i {
  font-size: 3rem;
  color: var(--black);
}

.gallery-preview-item:hover img {
  transform: scale(1.2);
}

.gallery-preview-item:hover .gallery-preview-overlay {
  opacity: 1;
}

/* Category Selection Styles */
.category-selection {
  margin-bottom: 2rem;
  position: relative;
}

.category-selection label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.category-selection select {
  width: 100%;
  padding: 1rem 3rem 1rem 1rem;
  border: 2px solid #D4AF37;
  border-radius: 10px;
  background: white;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s ease;
}

.category-selection select:focus {
  outline: none;
  border-color: #B8860B;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.category-selection i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #D4AF37;
  pointer-events: none;
}

/* Service Options Container */
.service-options-container {
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-options-container h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-height: 300px;
  overflow-y: auto;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.service-option:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3);
}

.form-group i {
  color: var(--gold);
  margin-top: 12px;
  position: absolute;
  right: 15px;
  top: 54%;
  transform: translateY(-50%);
}

.service-option input[type=radio],
.service-option input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: bisque;
  cursor: pointer;
  flex-shrink: 0;
}

.service-option span {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.service-option small {
  color: bisque;
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  flex-shrink: 0;
}

/* Modal Styles */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.success-modal .modal-header {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
  border-bottom: none;
}

.success-icon {
  font-size: 4rem;
  color: #2ecc71;
  margin-bottom: 1rem;
  animation: checkmarkBounce 0.6s ease-out;
}

@keyframes checkmarkBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.success-modal h3 {
  color: var(--black);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-body {
  padding: 1rem 1.5rem 2rem;
  text-align: center;
}

.modal-body p {
  margin: 0.5rem 0;
  color: var(--gray);
  line-height: 1.6;
}

.reservation-details {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row strong {
  color: var(--black);
  font-weight: 600;
}

.info-box,
.summary-box {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 450px;
}

.summary-value {
  color: var(--black);
  margin-left: 18px;
}

.modal-footer {
  padding: 1rem 1.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid #e9ecef;
}

.modal-footer .btn-gold {
  min-width: 120px;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-content {
    margin: 20px;
    width: calc(100% - 40px);
  }
  .success-icon {
    font-size: 3rem;
  }
  .success-modal h3 {
    font-size: 1.3rem;
  }
  .flip-cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
  }
  .flip-card {
    height: 260px;
    max-width: 100%;
    width: 100%;
  }
  .flip-card-front {
    padding: 1.5rem 1rem;
  }
  .flip-card-front i {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .flip-card-front h4 {
    font-size: 1.3rem;
  }
  .flip-card-front p {
    font-size: 1rem;
  }
  .flip-card-back {
    padding: 1.2rem;
  }
  .flip-card-back h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .service-options {
    max-height: 140px;
    gap: 0.6rem;
  }
  .service-option {
    padding: 0.6rem;
    gap: 0.6rem;
  }
  .service-option span {
    font-size: 0.9rem;
  }
  .service-option small {
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .flip-cards-container {
    gap: 1rem;
  }
  .flip-card {
    height: 240px;
  }
  .flip-card-front i {
    font-size: 2.5rem;
  }
  .flip-card-front h4 {
    font-size: 1.1rem;
  }
  .flip-card-back h4 {
    font-size: 1.1rem;
  }
  .service-options {
    max-height: 120px;
  }
}
/* ===== PAGE ACTUALITÉS ===== */
.news-section {
  padding: 80px 0;
}

.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
  padding: 40px;
  background: var(--light-gray);
  border-radius: 20px;
  align-items: center;
}

.news-featured-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.news-featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.news-featured-image:hover img {
  transform: scale(1.05);
}

.news-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.news-date {
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-category {
  background: var(--gold);
  color: var(--black);
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: bold;
}

.news-featured-content h2 {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 20px;
}

.news-featured-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
}

.news-highlights {
  list-style: none;
  margin: 25px 0;
}

.news-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.news-highlights i {
  color: var(--gold);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.news-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-date-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 0.9rem;
}

.news-card-content {
  padding: 25px;
}

.news-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.news-card-category {
  background: var(--gold);
  color: var(--black);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.news-card-category.promotion {
  background: #e74c3c;
  color: white;
}

.news-card-category.conseils {
  background: #3498db;
  color: white;
}

.news-card-category.social {
  background: #9b59b6;
  color: white;
}

.news-card-category.success {
  background: #2ecc71;
  color: white;
}

.news-read-time {
  color: var(--medium-gray);
  font-size: 0.85rem;
}

.news-card-content h3 {
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 15px;
  line-height: 1.3;
}

.news-card-content p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 15px;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}

.tag {
  background: var(--light-gray);
  color: var(--gray);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.promo-code {
  background: var(--light-gray);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin: 15px 0;
  border: 2px dashed var(--gold);
}

.promo-code i {
  color: var(--gold);
  margin-right: 5px;
}

.news-highlight-box {
  background: rgba(212, 175, 55, 0.1);
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  margin: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.news-highlight-box i {
  color: var(--gold);
}

.social-stats {
  display: flex;
  gap: 30px;
  margin: 15px 0;
}

.social-stats .stat {
  text-align: center;
}

.social-stats strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
}

.social-stats span {
  font-size: 0.9rem;
  color: var(--medium-gray);
}

.testimonial-rating {
  color: var(--gold);
  margin: 15px 0;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
}

.news-read-more:hover {
  gap: 12px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.pagination-btn {
  width: 45px;
  height: 45px;
  border: 2px solid var(--gold);
  background: var(--white);
  color: var(--gold);
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.pagination-btn:hover,
.pagination-btn.active {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.newsletter-box {
  background: linear-gradient(135deg, var(--black), var(--gray));
  padding: 50px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--black);
}

.newsletter-content {
  color: var(--white);
}

.newsletter-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.newsletter-content p {
  color: var(--light-gray);
}

.newsletter-form-inline {
  display: flex;
  gap: 10px;
}

.newsletter-form-inline input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border-radius: 25px;
  border: none;
  font-size: 1rem;
}

.newsletter-form-inline button {
  white-space: nowrap;
}

/* ===== PAGE GALERIE ===== */
.gallery-filters-section {
  padding: 50px 0;
  background: var(--light-gray);
}

.filters-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-btn {
  padding: 12px 25px;
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-full-section {
  padding: 80px 0;
}

.gallery-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.gallery-item-full {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 400px;
  transition: var(--transition);
}

.gallery-item-full.hidden {
  display: none;
}

.gallery-item-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item-full:hover img {
  transform: scale(1.1);
}

.gallery-item-full:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-info {
  margin-top: auto;
  color: var(--white);
}

.gallery-item-info h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.gallery-item-info p {
  font-size: 0.95rem;
}

.gallery-zoom-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: var(--black);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-zoom-btn:hover {
  transform: scale(1.1) rotate(15deg);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-section h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-section p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-slogan {
  font-style: italic;
  color: var(--gold) !important;
}

.horaires-list p,
.contact-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--light-gray);
  text-decoration: none;
  transition: var(--transition);
  padding: 8px;
  border-radius: 8px;
}

.social-links a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
  padding-left: 15px;
}

.social-links i {
  font-size: 1.5rem;
  color: var(--gold);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

/* ===== BOUTON SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .presentation-content,
  .zones-content,
  .news-featured,
  .reservation-container {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .services-selection {
    grid-template-columns: 1fr;
  }
  .newsletter-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .newsletter-icon {
    margin: 0 auto;
  }
  .newsletter-form-inline {
    flex-direction: column;
  }
  .newsletter-form-inline input {
    min-width: 100%;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 30px;
    gap: 0;
  }
  .nav-menu li {
    margin: 15px 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .hero h1,
  .page-hero-content h1 {
    font-size: 2.5rem;
  }
  .hero h2 {
    font-size: 1.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .services-grid,
  .gallery-grid-full,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .form-row,
  .zones-list {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .social-links {
    align-items: center;
  }
  .form-buttons {
    flex-direction: column;
  }
  .progress-line {
    width: 50px;
  }
}
/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border: 3px solid var(--gold);
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 40px;
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--gold-light);
  transform: rotate(90deg);
}

.admin-dashboard {
  padding: 2rem 0;
  background: var(--light-gray);
  min-height: calc(100vh - 80px);
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 2rem;
}

.dashboard-header h1 {
  color: var(--black);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  margin-top: 50px;
}

.dashboard-header p {
  color: var(--medium-gray);
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-left: 4px solid var(--gold);
}

.stat-card h3 {
  color: var(--black);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--medium-gray);
  font-size: 1rem;
}

.reservations-section {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.reservations-header {
  padding: 1.5rem;
  background: var(--light-gray);
  border-bottom: 1px solid #e0e0e0;
}

.reservations-header h2 {
  color: var(--black);
  font-size: 1.5rem;
  margin: 0;
}

.reservations-table-container {
  max-height: 600px;
  overflow-y: auto;
}

.reservations-table {
  width: 100%;
  border-collapse: collapse;
}

.reservations-table th {
  background: var(--light-gray);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.reservations-table td {
  padding: 1rem;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
}

.reservations-table tbody tr:hover {
  background: #f9f9f9;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.client-info i {
  color: var(--gold);
}

.service-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
}

.service-badge.femme {
  background: #ffe6e6;
  color: #d63384;
}

.service-badge.homme {
  background: #e6f3ff;
  color: #0d6efd;
}

.service-badge.enfant {
  background: #f0f9ff;
  color: #0dcaf0;
}

.service-badge.coloration {
  background: #fff3cd;
  color: #664d03;
}

.service-badge.soins {
  background: #e7f3ff;
  color: #0c63e4;
}

.service-badge.mariage {
  background: #fce4ec;
  color: #c2185b;
}

.contact-links {
  display: flex;
  gap: 0.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: var(--light-gray);
  color: var(--gray);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.contact-link:hover {
  background: var(--gold);
  color: var(--black);
}

.actions-cell {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  padding: 0.25rem 0.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.action-btn.edit {
  background: var(--gold);
  color: var(--black);
}

.action-btn.delete {
  background: #dc3545;
  color: white;
}

.action-btn:hover {
  opacity: 0.8;
}

.no-reservations {
  text-align: center;
  padding: 3rem;
  color: var(--medium-gray);
}

.no-reservations i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .reservations-table {
    font-size: 0.9rem;
  }
  .reservations-table th,
  .reservations-table td {
    padding: 0.5rem;
  }
  .contact-links {
    flex-direction: column;
  }
}
/* =====================================
   LOGIN BANGER – FULL LUXE SAFE
===================================== */
.login-banger {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 1rem;
  overflow: hidden;
  /* ===== FOND LUXE ===== */
  background: radial-gradient(circle at top, rgba(201, 162, 77, 0.15), transparent 60%), radial-gradient(circle at bottom, rgba(0, 0, 0, 0.9), #000 70%), linear-gradient(180deg, #0a0a0a, #000);
  /* Vignette */
}
.login-banger::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.login-banger {
  /* Grain luxe */
}
.login-banger::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2;
}
.login-banger {
  /* ===== CARD ===== */
}
.login-banger__card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 440px;
  padding: 3.4rem 2.8rem;
  background: linear-gradient(180deg, #111, #050505);
  border-radius: 20px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), inset 0 0 0 1px rgba(201, 162, 77, 0.18);
  animation: fadeUp 0.9s ease forwards;
}
.login-banger__title {
  text-align: center;
  color: #c9a24d;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 3.2rem;
}
.login-banger__title span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: #9f9f9f;
}
.login-banger__error {
  margin-bottom: 2rem;
  padding: 0.8rem;
  border-radius: 8px;
  background: rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(255, 0, 0, 0.25);
  color: #ffb3b3;
  font-size: 0.85rem;
}
.login-banger__field {
  position: relative;
  margin-bottom: 2.4rem;
}
.login-banger__field input {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 0.95rem;
}
.login-banger__field input:focus {
  outline: none;
  border-color: #c9a24d;
}
.login-banger__field input:focus + label, .login-banger__field input:not(:placeholder-shown) + label {
  transform: translateY(-1.4rem);
  font-size: 0.65rem;
  color: #c9a24d;
  letter-spacing: 1.5px;
}
.login-banger__field label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #b0b0b0;
  pointer-events: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.login-banger__options {
  margin-bottom: 2.8rem;
}
.login-banger__options label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #b0b0b0;
}
.login-banger__options input {
  accent-color: #c9a24d;
}
.login-banger__button {
  width: 100%;
  padding: 1rem;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, #edd48a, #c9a24d);
  color: #0a0a0a;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(201, 162, 77, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.login-banger__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(201, 162, 77, 0.75);
}

/* ===============================
   ANIMATION
================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=app.css-PDpX1Ez.map */
