



:root {
  
  --color-primary: #2C3639;
  --color-secondary: #A27B5C;
  --color-accent: #DCD7C9;
  --color-background: #F5F5F5;
  --color-text: #333333;
  --color-accent-dark: #8A6343;
  --color-error: #D32F2F;
  --color-success: #388E3C;
  
  
  --space-3xs: 0.25rem;  
  --space-2xs: 0.5rem;   
  --space-xs: 0.75rem;   
  --space-s: 1rem;       
  --space-m: 1.5rem;     
  --space-l: 2rem;       
  --space-xl: 3rem;      
  --space-2xl: 4rem;     
  --space-3xl: 6rem;     
  
  
  --font-family: 'Libre Franklin', sans-serif;
  --font-size-xs: 0.75rem;   
  --font-size-s: 0.875rem;   
  --font-size-m: 1rem;       
  --font-size-l: 1.25rem;    
  --font-size-xl: 1.5rem;    
  --font-size-2xl: 2rem;     
  --font-size-3xl: 2.5rem;   
  --font-size-4xl: 3rem;     
  
  
  --border-radius-s: 4px;
  --border-radius-m: 8px;
  --border-radius-l: 12px;
  --border-radius-xl: 16px;
  --box-shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --box-shadow-floating: 0 8px 30px rgba(0, 0, 0, 0.12);
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

button, input, select, textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-m);
}

.section {
  padding: var(--space-xl) 0;
}

.section-tight {
  padding: var(--space-l) 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-m);
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: var(--space-l) 0;
  }
}


.header {
  background-color: var(--color-primary);
  padding: var(--space-s) 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: var(--font-size-xl);
  cursor: pointer;
}

.nav {
  display: flex;
  gap: var(--space-m);
}

.nav-link {
  color: white;
  font-size: var(--font-size-s);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--color-accent);
  text-decoration: none;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-primary);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-radius: var(--border-radius-s);
  overflow: hidden;
}

.dropdown-link {
  display: block;
  padding: var(--space-xs) var(--space-s);
  color: white;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  background-color: var(--color-secondary);
  color: white;
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    flex-direction: column;
    padding: var(--space-m);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .dropdown-content {
    position: static;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    margin-top: var(--space-xs);
    display: none;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
}


.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  color: white;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  margin-bottom: var(--space-s);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 300;
  margin-bottom: var(--space-m);
}

.typed-text {
  color: var(--color-accent);
  font-style: italic;
}

.hero-cta {
  margin-top: var(--space-l);
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-l);
  }
}


.btn {
  display: inline-block;
  padding: var(--space-xs) var(--space-m);
  border-radius: var(--border-radius-m);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: white;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--color-accent-dark);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--color-secondary);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-large {
  padding: var(--space-s) var(--space-l);
  font-size: var(--font-size-l);
}


.card {
  background-color: white;
  border-radius: var(--border-radius-l);
  padding: var(--space-l);
  box-shadow: var(--box-shadow-card);
  transition: all 0.3s ease;
  height: fit-content;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-floating);
}

.card-header {
  margin-bottom: var(--space-m);
}

.card-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.card-subtitle {
  font-size: var(--font-size-m);
  color: var(--color-secondary);
  font-weight: 400;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-m);
  margin-bottom: var(--space-m);
}

.card-body {
  flex: 1;
  margin-bottom: var(--space-m);
}

.card-footer {
  margin-top: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-l);
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}


.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--space-l);
  position: relative;
  padding-bottom: var(--space-s);
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--color-secondary);
}

.section-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 300;
  margin-bottom: var(--space-xl);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-m);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-m);
  aspect-ratio: 1/1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: var(--space-s);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}


.form-group {
  margin-bottom: var(--space-m);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: var(--space-s);
  border: 1px solid #ddd;
  border-radius: var(--border-radius-m);
  font-size: var(--font-size-m);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-secondary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(162, 123, 92, 0.25);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-m);
}

.form-check-input {
  margin-right: var(--space-xs);
  margin-top: 0.3em;
}

.form-check-label {
  font-size: var(--font-size-s);
}

.form-text {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--font-size-s);
  color: #666;
}

.form-error {
  color: var(--color-error);
  font-size: var(--font-size-s);
  margin-top: var(--space-xs);
}

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


.iti {
  width: 100%;
}


.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-m);
  overflow: hidden;
  margin-bottom: var(--space-l);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--color-secondary);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: var(--space-m) 0;
  position: relative;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: var(--space-m);
  background-color: white;
  border-radius: var(--border-radius-m);
  box-shadow: var(--box-shadow-card);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-date {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  text-align: center;
  color: var(--color-primary);
  font-weight: 600;
}

.timeline-item:nth-child(odd) .timeline-date {
  right: -120px;
}

.timeline-item:nth-child(even) .timeline-date {
  left: -120px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: calc(55% - 20px);
  background-color: var(--color-accent);
  border: 4px solid var(--color-secondary);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 1;
}

.timeline-item:nth-child(even)::after {
  left: calc(55% - 20px);
  right: auto;
}

@media (max-width: 768px) {
  .timeline::after {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 80px;
  }
  
  .timeline-date {
    position: relative;
    margin-bottom: var(--space-xs);
    top: 0;
    transform: none;
    left: 0;
    text-align: left;
  }
  
  .timeline-item:nth-child(odd) .timeline-date,
  .timeline-item:nth-child(even) .timeline-date {
    left: 0;
    right: auto;
  }
  
  .timeline-item::after {
    left: 20px;
    right: auto;
  }
  
  .timeline-item:nth-child(even)::after {
    left: 20px;
  }
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-l);
}

.feature {
  text-align: center;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-s);
}

.feature-title {
  font-size: var(--font-size-l);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}


.testimonial {
  background-color: white;
  border-radius: var(--border-radius-l);
  padding: var(--space-l);
  box-shadow: var(--box-shadow-card);
  margin-bottom: var(--space-l);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(162, 123, 92, 0.2);
  font-family: Georgia, serif;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: var(--space-m);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: var(--space-s);
  object-fit: cover;
}

.testimonial-info h4 {
  margin: 0;
  font-size: var(--font-size-m);
}

.testimonial-info p {
  margin: 0;
  font-size: var(--font-size-s);
  color: #666;
}


.footer {
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-xl) 0 var(--space-l);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-l);
}

.footer-logo {
  height: 40px;
  margin-bottom: var(--space-m);
}

.footer-title {
  font-size: var(--font-size-l);
  font-weight: 600;
  margin-bottom: var(--space-m);
  position: relative;
  padding-bottom: var(--space-xs);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-secondary);
}

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

.footer-nav li {
  margin-bottom: var(--space-xs);
}

.footer-nav a {
  color: var(--color-accent);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: white;
  text-decoration: none;
}

.footer-contact {
  margin-bottom: var(--space-s);
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--color-secondary);
  margin-right: var(--space-xs);
  margin-top: 0.3em;
}

.footer-bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-m);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: var(--font-size-s);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-m);
    text-align: center;
  }
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary);
  color: white;
  padding: var(--space-m);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-text {
  flex: 1;
  margin-right: var(--space-m);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-xs);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: white;
  border-radius: var(--border-radius-l);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--box-shadow-floating);
}

.cookie-modal-header {
  padding: var(--space-m);
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: var(--font-size-xl);
  cursor: pointer;
  color: #666;
}

.cookie-modal-body {
  padding: var(--space-m);
}

.cookie-category {
  margin-bottom: var(--space-m);
  padding-bottom: var(--space-m);
  border-bottom: 1px solid #eee;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-s);
}

.cookie-category-title {
  font-size: var(--font-size-l);
  font-weight: 600;
  margin: 0;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: var(--color-secondary);
}

input:focus + .cookie-slider {
  box-shadow: 0 0 1px var(--color-secondary);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-category-description {
  font-size: var(--font-size-s);
  color: #666;
}

.cookie-modal-footer {
  padding: var(--space-m);
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: var(--space-s);
}


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

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

.animate-delay-1 {
  animation-delay: 0.2s;
}

.animate-delay-2 {
  animation-delay: 0.4s;
}

.animate-delay-3 {
  animation-delay: 0.6s;
}


.map-france {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #f0f0f0;
  border-radius: var(--border-radius-m);
  overflow: hidden;
  margin-bottom: var(--space-l);
}

.map-region {
  position: absolute;
  cursor: pointer;
  transition: fill 0.3s ease;
}

.map-region:hover {
  fill: var(--color-secondary);
}

.map-popup {
  position: absolute;
  background-color: white;
  border-radius: var(--border-radius-m);
  padding: var(--space-m);
  box-shadow: var(--box-shadow-floating);
  width: 250px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.map-region:hover + .map-popup {
  opacity: 1;
  visibility: visible;
}


.calendar {
  background-color: white;
  border-radius: var(--border-radius-l);
  padding: var(--space-m);
  box-shadow: var(--box-shadow-card);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-m);
}

.calendar-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

.calendar-nav {
  display: flex;
  gap: var(--space-xs);
}

.calendar-nav-btn {
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: var(--font-size-l);
  cursor: pointer;
  transition: color 0.3s ease;
}

.calendar-nav-btn:hover {
  color: var(--color-accent-dark);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-xs);
}

.calendar-day-name {
  text-align: center;
  font-weight: 600;
  padding: var(--space-xs);
}

.calendar-day {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-s);
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-day:hover {
  background-color: var(--color-accent);
}

.calendar-day.has-event {
  position: relative;
}

.calendar-day.has-event::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

.calendar-events {
  margin-top: var(--space-m);
}

.calendar-event {
  padding: var(--space-s);
  margin-bottom: var(--space-xs);
  border-radius: var(--border-radius-s);
  border-left: 3px solid var(--color-secondary);
  background-color: #f9f9f9;
}

.calendar-event-title {
  font-weight: 600;
  margin-bottom: var(--space-3xs);
}

.calendar-event-time {
  font-size: var(--font-size-s);
  color: #666;
  margin-bottom: var(--space-3xs);
}

.calendar-event-location {
  font-size: var(--font-size-s);
  color: #666;
}


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

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

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

.mb-s {
  margin-bottom: var(--space-s);
}

.mb-m {
  margin-bottom: var(--space-m);
}

.mb-l {
  margin-bottom: var(--space-l);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mt-s {
  margin-top: var(--space-s);
}

.mt-m {
  margin-top: var(--space-m);
}

.mt-l {
  margin-top: var(--space-l);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.d-flex {
  display: flex;
}

.justify-content-between {
  justify-content: space-between;
}

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

.flex-column {
  flex-direction: column;
}

.gap-s {
  gap: var(--space-s);
}

.gap-m {
  gap: var(--space-m);
}

.gap-l {
  gap: var(--space-l);
}

.w-100 {
  width: 100%;
}

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

.bg-light {
  background-color: #f9f9f9;
}

.rounded {
  border-radius: var(--border-radius-m);
}

.shadow {
  box-shadow: var(--box-shadow-card);
}

.p-s {
  padding: var(--space-s);
}

.p-m {
  padding: var(--space-m);
}

.p-l {
  padding: var(--space-l);
}