﻿:root {
  --lc-primary: #a55c39;
  --lc-primary-dark: #7c3f1f;
  --lc-secondary: #d4a373;
  --lc-text: #2e1c14;
  --lc-bg: #f7f1ea;
  --lc-light: #fffaf5;
  --lc-shadow: rgba(165, 92, 57, 0.18);
  --nav-offset: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  background: var(--lc-bg);
  color: var(--lc-text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

a {
  color: var(--lc-primary);
  text-decoration: none;
}

a:hover {
  color: var(--lc-primary-dark);
  text-decoration: underline;
}

.navbar {
  background: rgba(255, 250, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(165, 92, 57, 0.12);
}

.navbar .navbar-brand {
  color: var(--lc-text);
  font-family: 'Playfair Display', Georgia, serif;
}

.navbar .nav-link {
  font-weight: 600;
  color: var(--lc-text);
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--lc-primary);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.brand-mark-sm {
  width: 2rem;
  height: 2rem;
}

.brand-title {
  letter-spacing: 0.4px;
}

.hero {
  padding: min(14vh, 8rem) 0 6rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(165, 92, 57, 0.45), transparent 60%),
              radial-gradient(circle at bottom right, rgba(212, 163, 115, 0.35), transparent 55%),
              linear-gradient(120deg, #5b3a2e, #a55c39 55%, #c28c62);
}

.hero .color-layer {
  position: absolute;
  inset: 0;
  background: url('/assets/images/conteur.jpg') center / cover;
  opacity: 0.18;
  mix-blend-mode: screen;
}

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

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.5px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-highlights li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-highlights i {
  font-size: 1.2rem;
}

.btn-hero {
  background: #fff;
  color: var(--lc-primary);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.btn-hero:hover {
  color: var(--lc-primary-dark);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24);
}

.btn-outline-light {
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  border-width: 2px;
  font-weight: 600;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--lc-text);
}

.note-auteur {
  background: var(--lc-light);
  border-left: 4px solid var(--lc-secondary);
  border-radius: 0.75rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.event-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(165, 92, 57, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-date {
  font-weight: 700;
  color: var(--lc-primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.badge.text-bg-light {
  background: rgba(165, 92, 57, 0.12) !important;
  color: var(--lc-primary) !important;
  border: 1px solid rgba(165, 92, 57, 0.28);
}

.highlight-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.highlight-list i {
  color: var(--lc-primary);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.contact-list i {
  color: var(--lc-primary);
}

.contact-quote {
  background: rgba(165, 92, 57, 0.08);
  border-radius: 0.75rem;
  border: 1px solid rgba(165, 92, 57, 0.2);
}

.contact-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(165, 92, 57, 0.15);
}

.contact-card .btn-primary {
  background: var(--lc-primary);
  border-color: var(--lc-primary);
}

.contact-card .btn-primary:hover {
  background: var(--lc-primary-dark);
  border-color: var(--lc-primary-dark);
}

.site-footer {
  background: rgba(255, 250, 245, 0.95);
  border-top: 1px solid rgba(165, 92, 57, 0.12);
}

.phone-fab {
  position: fixed;
  right: 1rem;
  bottom: 15vh;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: var(--lc-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(165, 92, 57, 0.35);
  z-index: 1050;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.phone-fab:hover,
.phone-fab:focus {
  background: var(--lc-primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(165, 92, 57, 0.45);
}

.phone-fab:active {
  transform: translateY(1px);
  box-shadow: 0 10px 22px rgba(165, 92, 57, 0.4);
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 3.5rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.scroll-cue::after {
  content: '';
  position: absolute;
  top: 0.75rem;
  left: 50%;
  width: 0.35rem;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: cue 2s ease-in-out infinite;
}

@keyframes cue {
  0% { opacity: 0; transform: translate(-50%, -0.5rem); }
  50% { opacity: 1; transform: translate(-50%, 0.4rem); }
  100% { opacity: 0; transform: translate(-50%, 1.2rem); }
}

@media (max-width: 991.98px) {
  .hero {
    padding: 6rem 0 4rem;
  }

}

@media (max-width: 575.98px) {
  .hero-card {
    padding: 1.5rem;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .event-card {
    padding: 1.5rem;
  }

  .scroll-cue {
    display: none;
  }
}


