/* ==================== project-root/css/style.css ==================== */
/* CSS CUSTOM PROPERTIES */
:root {
  --cream: #FBF9F6;
  --gold: #C8A98C;
  --gold-light: #D4AF37;
  --dark: #2C2A29;
  --soft-black: #1A1A1A;
  --white: #fff;
  --gray-light: #f0ece7;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 16px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background-color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}
.bg-soft {
  background-color: var(--gray-light);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 0.8rem auto 0;
}
.section-lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #5c5a56;
  font-size: 1.1rem;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  font-size: 0.95rem;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8916f;
  border-color: #b8916f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: white;
}
.btn-outline-small {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn-outline-small:hover {
  background: var(--gold);
  color: white;
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(251, 249, 246, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 50px;
  width: auto;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.25rem 0;
  color: var(--dark);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 1rem;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid white;
  border-radius: 12px;
  position: relative;
}
.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollAnim 1.5s infinite;
}
@keyframes scrollAnim {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 24px; }
}

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.intro-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.intro-icon {
  margin-bottom: 1rem;
}
.intro-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* SERVICES CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
  color: var(--dark);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-img {
  height: 250px;
  background-size: cover;
  background-position: center;
}
.service-card-content {
  padding: 1.5rem;
}
.service-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.service-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.service-card:hover .service-link {
  border-color: var(--gold);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-thumb {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-thumb {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-size: 2rem;
  color: white;
  font-weight: 300;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

/* TESTIMONIALS */
.testimonial-slider {
  max-width: 800px;
  margin: 3rem auto 0;
  text-align: center;
  position: relative;
}
.testimonial-track {
  overflow: hidden;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}
.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: #3a3735;
}
.testimonial-author {
  font-weight: 600;
  color: var(--gold);
}
.testimonial-dots {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--gold);
}

/* FINAL CTA */
.final-cta {
  background: var(--soft-black);
  color: white;
  text-align: center;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--gold-light);
}
.cta-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 999;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* FOOTER */
.footer {
  background: var(--soft-black);
  color: #ccc;
  padding: 3rem 0 1.5rem;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.footer-col h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-size: 0.85rem;
}

/* PAGE HERO */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(135deg, #f8f5f0 0%, #eae3d9 100%);
}
.page-title {
  font-size: clamp(2.2rem, 6vw, 3rem);
  margin-bottom: 0.5rem;
}
.page-subtitle {
  color: #5c5a56;
  font-size: 1.1rem;
}

/* WIZARD */
.wizard-container {
  padding-bottom: 4rem;
}
.progress-bar-wrapper {
  margin-bottom: 3rem;
}
.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.progress-steps .step {
  font-size: 0.8rem;
  font-weight: 500;
  color: #aaa;
  position: relative;
  flex: 1;
  text-align: center;
  padding-bottom: 1.2rem;
  cursor: default;
}
.progress-steps .step.active,
.progress-steps .step.completed {
  color: var(--gold);
  font-weight: 700;
}
.progress-bar-bg {
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.4s ease;
}
.wizard-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
.wizard-step {
  display: none;
}
.wizard-step.active {
  display: block;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.option-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 2px solid #e0d9cf;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  background: white;
  position: relative;
}
.option-card input {
  position: absolute;
  opacity: 0;
}
.option-card:hover {
  border-color: var(--gold);
}
.option-card input:checked + span {
  color: var(--gold);
  font-weight: 600;
}
.option-card:has(input:checked) {
  border-color: var(--gold);
  background: #fbf5f0;
}
.btn-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.btn-group .next-step:disabled,
.btn-group .prev-step:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wizard-summary {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
  height: fit-content;
}
.wizard-summary h4 {
  margin-bottom: 1rem;
  color: var(--gold);
}
.summary-empty {
  color: #999;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.summary-label {
  font-weight: 500;
}
.btn-whatsapp-summary {
  width: 100%;
  margin-top: 1.5rem;
  background: #25D366;
  color: white;
  border: none;
  padding: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-whatsapp-summary:hover {
  background: #1ebe5d;
}
.btn-whatsapp-summary:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* TRAITEUR */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  color: white;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.menu-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.menu-img {
  height: 200px;
  overflow: hidden;
}
.menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-item:hover .menu-img img {
  transform: scale(1.05);
}
.menu-content {
  padding: 1.5rem;
}
.menu-content h3 {
  margin-bottom: 0.5rem;
}
.menu-content p {
  margin-bottom: 1rem;
  color: #555;
}

/* EVENTS */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.event-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.event-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}
.event-card-content {
  padding: 1.5rem;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-social a {
  margin-right: 1rem;
  color: var(--gold);
}
.contact-form .form-group {
  margin-bottom: 1.2rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-family: var(--font-sans);
  background: white;
  transition: var(--transition);
}
.contact-form textarea {
  border-radius: var(--radius);
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 169, 140, 0.15);
}
.form-feedback {
  margin-top: 1rem;
  font-weight: 500;
}
.pack-contact-form input, .pack-contact-form textarea {
  border-radius: 50px;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  width: 100%;
  margin-bottom: 1rem;
}
.pack-contact-form textarea {
  border-radius: var(--radius);
}

/* ANIMATIONS */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .wizard-layout {
    grid-template-columns: 1fr;
  }
  .wizard-summary {
    position: static;
    margin-top: 2rem;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    padding: 5rem 2rem;
    transition: right 0.4s ease;
    z-index: 1100;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-toggle {
    display: flex;
    z-index: 1200;
  }
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .option-grid {
    grid-template-columns: 1fr;
  }
}