/* Voyance Vendée - Design Élégant V2 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* Palette sophistiquée */
:root {
  --deep-night: #0a0a12;
  --charcoal: #1a1a24;
  --slate: #2a2a38;
  --warm-copper: #c4956c;
  --old-gold: #d4a574;
  --pearl: #f4f1ec;
  --smoke: #b8b5b0;
  --mist: #8a8782;
  
  --shadow-subtle: 0 2px 20px rgba(0, 0, 0, 0.15);
  --shadow-bold: 0 8px 40px rgba(0, 0, 0, 0.25);
  --shadow-copper: 0 4px 24px rgba(196, 149, 108, 0.12);
}

/* Reset moderne */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px; /* Base généreuse */
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--pearl);
  background: var(--deep-night);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typographie raffinée */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--pearl);
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  font-weight: 400;
  color: var(--old-gold);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--pearl);
}

h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--warm-copper);
}

p {
  color: var(--smoke);
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--mist);
  font-weight: 300;
}

/* Liens élégants */
a {
  color: var(--warm-copper);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--old-gold);
}

/* Navigation fixe */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 149, 108, 0.15);
  transition: all 0.4s ease;
}

.header-nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--old-gold);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--smoke);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--warm-copper);
}

/* Layouts modernes */
.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.content-wide {
  max-width: 1200px;
  margin: 0 auto;
}

/* Espacements généreux */
.section {
  padding: 8rem 0;
}

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

.section-hero {
  padding: 12rem 0 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Grilles asymétriques */
.grid-asymmetric {
  display: grid;
  gap: 3rem;
  grid-template-columns: 2fr 1fr;
}

.grid-masonry {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-thirds {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}

/* Cards variées */
.card-elevated {
  background: rgba(26, 26, 36, 0.6);
  border: 1px solid rgba(196, 149, 108, 0.2);
  border-radius: 12px;
  padding: 3rem;
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-elevated:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-copper);
  border-color: var(--warm-copper);
}

.card-minimal {
  padding: 2rem 0;
  border-left: 3px solid var(--warm-copper);
  padding-left: 2rem;
  margin: 2rem 0;
}

.card-quote {
  background: linear-gradient(145deg, rgba(42, 42, 56, 0.5), rgba(26, 26, 36, 0.8));
  padding: 3rem 3rem 3rem 5rem;
  position: relative;
  border-radius: 8px;
  margin: 3rem 0;
}

.card-quote::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--warm-copper);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

/* Boutons sophistiqués */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 400;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--warm-copper), var(--old-gold));
  color: var(--deep-night);
  font-weight: 500;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 149, 108, 0.3);
  color: var(--deep-night);
}

.btn-ghost {
  background: transparent;
  color: var(--warm-copper);
  border: 2px solid var(--warm-copper);
}

.btn-ghost:hover {
  background: var(--warm-copper);
  color: var(--deep-night);
}

.btn-text {
  background: none;
  border: none;
  color: var(--warm-copper);
  font-weight: 500;
  padding: 0.5rem 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Formulaires élégants */
.form-elegant {
  background: rgba(26, 26, 36, 0.4);
  border: 1px solid rgba(196, 149, 108, 0.15);
  border-radius: 12px;
  padding: 3rem;
  backdrop-filter: blur(8px);
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--pearl);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid rgba(196, 149, 108, 0.2);
  border-radius: 8px;
  background: rgba(10, 10, 18, 0.7);
  color: var(--pearl);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--warm-copper);
  box-shadow: 0 0 0 4px rgba(196, 149, 108, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* FAQ élégante */
.faq-container {
  background: rgba(26, 26, 36, 0.3);
  border-radius: 12px;
  padding: 3rem;
}

.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(196, 149, 108, 0.15);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--pearl);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--smoke);
  line-height: 1.6;
}

/* Section de contenu riche */
.content-rich {
  max-width: 800px;
  margin: 0 auto;
}

.content-rich h2 {
  margin: 4rem 0 1.5rem 0;
}

.content-rich h3 {
  margin: 3rem 0 1rem 0;
}

.content-rich p {
  margin-bottom: 1.5rem;
}

.content-rich ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.content-rich li {
  margin-bottom: 0.5rem;
  color: var(--smoke);
}

/* Footer sophistiqué */
.footer {
  background: linear-gradient(145deg, var(--charcoal), var(--deep-night));
  border-top: 1px solid rgba(196, 149, 108, 0.2);
  padding: 6rem 0 2rem 0;
  margin-top: 8rem;
}

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

.footer-section h4 {
  color: var(--old-gold);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--smoke);
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 149, 108, 0.1);
  color: var(--mist);
  font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 1024px) {
  html {
    font-size: 16px;
  }
  
  .wrapper {
    padding: 0 1.5rem;
  }
  
  .grid-asymmetric {
    grid-template-columns: 1fr;
  }
  
  .grid-thirds {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header-nav {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    gap: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .section-hero {
    padding: 8rem 0 4rem;
    min-height: 80vh;
  }
  
  .card-elevated {
    padding: 2rem;
  }
  
  .form-elegant {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .wrapper {
    padding: 0 1rem;
  }
}

/* Animations subtiles */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* États de focus améliorés */
.btn:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--warm-copper);
  outline-offset: 2px;
}

/* Breadcrumbs minimalistes */
.breadcrumb {
  padding: 2rem 0 1rem 0;
  margin-top: 100px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

.breadcrumb-item {
  color: var(--mist);
  font-size: 0.9rem;
}

.breadcrumb-item::after {
  content: '→';
  margin-left: 1rem;
  color: var(--warm-copper);
}

.breadcrumb-item:last-child::after {
  display: none;
}

.breadcrumb-link {
  color: var(--mist);
}

.breadcrumb-link:hover {
  color: var(--warm-copper);
}