/* Template 82 - Parisian Cafe / French Elegance */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@400;500;600;700&family=Marcellus&family=Lato:wght@300;400;700&display=swap');

:root {
  --cafe-cream: #FDF8F3;
  --cafe-latte: #E8DDD4;
  --cafe-mocha: #6B5344;
  --cafe-espresso: #3D2B1F;
  --cafe-noir: #1C1410;
  --cafe-rouge: #8B3A3A;
  --cafe-gold: #C4A35A;
  --cafe-sage: #7D8471;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
  color: var(--cafe-espresso);
  background: var(--cafe-cream);
  font-weight: 400;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(107, 83, 68, 0.02) 100px,
      rgba(107, 83, 68, 0.02) 101px
    );
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Bistro Style */
.site-header {
  background: var(--cafe-cream);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--cafe-latte);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cafe-rouge), var(--cafe-gold), var(--cafe-sage));
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0 1rem;
}

.site-logo {
  margin-bottom: 1rem;
}

.site-logo a {
  font-family: 'Cormorant Upright', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--cafe-espresso);
  text-decoration: none;
  letter-spacing: 0.1em;
  position: relative;
}

.site-logo a::before,
.site-logo a::after {
  content: '\2767';
  font-size: 1.2rem;
  color: var(--cafe-gold);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.site-logo a::before {
  left: -2rem;
}

.site-logo a::after {
  right: -2rem;
  transform: translateY(-50%) scaleX(-1);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
  border-top: 1px solid var(--cafe-latte);
  border-bottom: 1px solid var(--cafe-latte);
  padding: 0.75rem 0;
}

.site-nav li {
  position: relative;
}

.site-nav li:not(:last-child)::after {
  content: '\2022';
  color: var(--cafe-gold);
  margin: 0 1.5rem;
  font-size: 0.5rem;
}

.site-nav a {
  color: var(--cafe-mocha);
  text-decoration: none;
  font-family: 'Marcellus', serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  color: var(--cafe-rouge);
}

/* Hero Section */
.section.head {
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.section.head::before {
  content: '\2042';
  display: block;
  font-size: 2rem;
  color: var(--cafe-gold);
  margin-bottom: 2rem;
}

.section.head h1 {
  font-family: 'Cormorant Upright', serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--cafe-espresso);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.section.head p {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  color: var(--cafe-mocha);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  position: relative;
  padding: 2rem 3rem;
  border: 1px solid var(--cafe-latte);
}

.section.head p::before,
.section.head p::after {
  content: '\201C';
  font-family: 'Cormorant Upright', serif;
  font-size: 4rem;
  color: var(--cafe-gold);
  position: absolute;
  opacity: 0.5;
}

.section.head p::before {
  top: -0.5rem;
  left: 1rem;
}

.section.head p::after {
  content: '\201D';
  bottom: -2rem;
  right: 1rem;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 3rem;
}

.section header h2 {
  font-family: 'Cormorant Upright', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--cafe-espresso);
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section header h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: var(--cafe-gold);
}

.section header p {
  font-size: 1rem;
  color: var(--cafe-mocha);
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--cafe-espresso);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cafe-gold), transparent);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-about {
  flex: 1;
  max-width: 350px;
}

.footer-tagline {
  color: var(--cafe-latte);
  line-height: 1.8;
  font-style: italic;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--cafe-latte);
  text-decoration: none;
  font-family: 'Marcellus', serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 221, 212, 0.2);
}

.footer-bottom::before {
  content: 'Merci de votre visite';
  display: block;
  font-family: 'Cormorant Upright', serif;
  font-style: italic;
  color: var(--cafe-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.copyright a {
  color: rgba(232, 221, 212, 0.6);
  font-size: 0.85rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: 'Cormorant Upright', serif;
  font-size: 1.5rem;
  color: var(--cafe-espresso);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
