@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  color: #2c3e50;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #2b4f81;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: inherit;
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
}
.btn-primary {
  background-color: #cb4b36;
  color: #ffffff;
  border-color: #cb4b36;
  box-shadow: 0 4px 10px rgba(203, 75, 54, 0.3);
}
.btn-primary:hover {
  background-color: #ac3e2c;
  border-color: #ac3e2c;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(203, 75, 54, 0.4);
}
.btn-secondary {
  background-color: #2b4f81;
  color: #ffffff;
  border-color: #2b4f81;
  box-shadow: 0 4px 10px rgba(43, 79, 129, 0.3);
}
.btn-secondary:hover {
  background-color: #25436e;
  border-color: #25436e;
  transform: translateY(-3px);
}
.btn-outline {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-outline:hover {
  background-color: #ffffff;
  color: #2b4f81;
}
.btn-outline-dark {
  background-color: transparent;
  border-color: #2b4f81;
  color: #2b4f81;
}
.btn-outline-dark:hover {
  background-color: #2b4f81;
  color: #ffffff;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.separator {
  width: 60px;
  height: 4px;
  background-color: #6e7238;
  margin: 15px auto 0;
  border-radius: 2px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .nav-links li a {
  color: #2b4f81;
  text-shadow: none;
}
.navbar.scrolled .nav-links li a:hover {
  color: #cb4b36;
}
.navbar.scrolled .mobile-menu-btn span {
  background-color: #2b4f81;
}
.navbar.scrolled .logo-container {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0);
}
.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo-container {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}
.navbar .logo-container .logo {
  height: 60px;
  width: auto;
  background-color: #ffffff;
}
.navbar .nav-links > ul {
  display: flex;
  gap: 30px;
}
.navbar .nav-links > ul li a {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.navbar .nav-links > ul li a:hover {
  color: #cb4b36;
}
.navbar .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.navbar .mobile-menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  margin: 6px 0;
  transition: 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  padding-top: 80px;
}
.hero-section .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-section .video-background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section .video-background .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 79, 129, 0.2);
  background: linear-gradient(to bottom, rgba(43, 79, 129, 0.15), rgba(17, 17, 17, 0.5));
}
.hero-section .hero-card {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  width: 90%;
  text-align: center;
  padding: 50px;
  background: rgba(18, 32, 56, 0.65);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.hero-section .hero-card .event-tag {
  display: inline-block;
  background-color: #cb4b36;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(203, 75, 54, 0.4);
}
.hero-section .hero-card .event-tag .icon {
  margin-right: 5px;
}
.hero-section .hero-card h1 {
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-section .hero-card h1 strong,
.hero-section .hero-card h1 b {
  color: #cb4b36;
  font-size: 4.2rem;
  display: block;
  margin-top: 5px;
  text-shadow: 0 0 25px rgba(203, 75, 54, 0.3);
}
.hero-section .hero-card .hero-separator {
  width: 80px;
  height: 4px;
  background-color: #ffffff;
  margin: 0 auto 30px;
}
.hero-section .hero-card .event-details {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}
.hero-section .hero-card .event-details .detail-item {
  display: flex;
  flex-direction: column;
}
.hero-section .hero-card .event-details .detail-item .detail-label {
  font-size: 0.75rem;
  opacity: 0.8;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.hero-section .hero-card .event-details .detail-item .detail-value {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.hero-section .hero-card .event-details .detail-item .detail-value strong,
.hero-section .hero-card .event-details .detail-item .detail-value b {
  border-bottom: 2px solid #cb4b36;
}
.hero-section .hero-card .hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.hero-section .hero-card .cta-subtext {
  display: block;
  margin-top: 15px;
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.7;
}

.about-section {
  padding: 90px 0;
  background-color: #f4f6f7;
}
.about-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.about-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2b4f81;
}
.about-section .section-header .separator {
  width: 60px;
  height: 4px;
  background-color: #6e7238;
  margin: 0 auto;
}
.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.about-section .about-grid a {
  text-decoration: underline;
}
.about-section .about-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(17, 17, 17, 0.1);
  transform: translateX(-50%);
}
.about-section .text-block {
  font-size: 1.05rem;
  color: #354b60;
  line-height: 1.8;
  text-align: justify;
}
.about-section .text-block p {
  margin-bottom: 20px;
}
.about-section .text-block .lead {
  font-size: 1.15rem;
  color: #2b4f81;
  font-weight: 400;
}
.about-section .text-block strong {
  color: #111111;
  font-weight: 700;
}
.about-section .profession-list {
  margin: 25px 0;
  padding-left: 20px;
  border-left: 3px solid #cb4b36;
}
.about-section .profession-list li {
  display: inline-block;
  margin-right: 10px;
  font-weight: 700;
  color: #111111;
  font-size: 0.95rem;
}
.about-section .profession-list li:not(:last-child)::after {
  content: ", ";
  color: #2c3e50;
  font-weight: 400;
}

@media (max-width: 992px) {
  .about-section .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-section .about-grid::after {
    display: none;
  }
  .about-section .text-block {
    text-align: left;
  }
}
.manifeste-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.manifeste-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.manifeste-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.manifeste-section .manifeste-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
  text-align: justify;
  color: #354b60;
}
.manifeste-section .manifeste-content p {
  margin-bottom: 25px;
}

.network-section {
  padding: 80px 0;
  background-color: #f4f6f7;
}
.network-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.network-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.network-section .section-header .section-subtitle {
  margin-top: 15px;
  color: #507192;
  font-style: italic;
}
.network-section .slider-container {
  position: relative;
  padding: 0 50px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.network-section .slider-track-container {
  overflow: hidden;
  width: 100%;
}
.network-section .slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}
.network-section .slide {
  flex: 0 0 calc(33.3333333333% - 14px);
  list-style: none;
}
.network-section .partner-card {
  display: block;
  color: inherit;
  background: #ffffff;
  padding: 40px 25px;
  text-align: center;
  border-radius: 6px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.network-section .partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.network-section .partner-card .partner-logo-box {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.network-section .partner-card .partner-logo-box img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.3s;
}
.network-section .partner-card:hover .partner-logo-box img {
  filter: grayscale(0%);
  opacity: 1;
}
.network-section .partner-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.network-section .partner-card p {
  font-size: 0.9rem;
  color: #476481;
}
.network-section .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2b4f81;
  color: #ffffff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.network-section .slider-btn:hover {
  background: #cb4b36;
}
.network-section .slider-btn.prev-btn {
  left: 0;
}
.network-section .slider-btn.next-btn {
  right: 0;
}

.news-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.news-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.news-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}
.news-section .news-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.news-section .news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.news-section .news-card:hover .news-img img {
  transform: scale(1.05);
}
.news-section .news-card .news-img {
  height: 220px;
  overflow: hidden;
}
.news-section .news-card .news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.news-section .news-card .news-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-section .news-card .news-content .news-date {
  font-size: 0.8rem;
  color: #6e7238;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.news-section .news-card .news-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #2b4f81;
}
.news-section .news-card .news-content p {
  font-size: 0.95rem;
  color: #3e5871;
  margin-bottom: 25px;
  flex-grow: 1;
}
.news-section .news-card .news-content .btn-sm {
  align-self: flex-start;
}
.news-section .news-footer-action {
  text-align: center;
  margin-top: 40px;
}

footer {
  background-color: #1e385b;
  color: #ffffff;
  padding: 80px 0 30px;
  font-size: 0.95rem;
}
footer .logo-footer {
  height: 180px;
  width: auto;
  margin-bottom: 15px;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 4px;
}
footer .footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
footer .footer-col h4 {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 15px;
}
footer .footer-col h5 {
  color: #cb4b36;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: "Lato", sans-serif;
}
footer .footer-col p {
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.6;
}
footer .footer-nav li {
  margin-bottom: 12px;
}
footer .footer-nav li a {
  opacity: 0.8;
  transition: 0.3s;
  position: relative;
  padding-left: 0;
}
footer .footer-nav li a:hover {
  opacity: 1;
  color: #ffffff;
  padding-left: 5px;
}
footer .social-links {
  display: flex;
  gap: 15px;
}
footer .social-links a {
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 4px;
  opacity: 0.8;
}
footer .social-links a:hover {
  background: #ffffff;
  color: #2b4f81;
  opacity: 1;
}
footer .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .newsletter-form input {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: "Lato", sans-serif;
}
footer .newsletter-form input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
footer .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
footer .newsletter-form input:focus {
  outline: none;
  border-color: #cb4b36;
  background: rgba(255, 255, 255, 0.1);
}
footer .newsletter-form button {
  width: 100%;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
  margin: 0;
}

@media (max-width: 992px) {
  footer .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 60px 0 30px;
    text-align: center;
  }
  footer .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  footer .social-links {
    justify-content: center;
  }
  footer .footer-nav li a:hover {
    padding-left: 0;
  }
  footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .network-section .slide {
    flex: 0 0 calc(50% - 10px);
  }
  .news-section .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .navbar .mobile-menu-btn {
    display: block;
  }
  .navbar .mobile-menu-btn span {
    background-color: #2b4f81;
  }
  .navbar .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 30px 0;
    gap: 20px;
    text-align: center;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: -1;
  }
  .navbar .nav-links.active {
    transform: translateY(0);
  }
  .navbar .nav-links li a {
    color: #2b4f81;
    font-size: 1.1rem;
    text-shadow: none;
  }
  .hero-section {
    background: linear-gradient(rgba(43, 79, 129, 0.7), rgba(17, 17, 17, 0.8)), url("../assets/mobile-bg.png");
    background-size: cover;
    background-position: center;
  }
  .hero-section .video-background {
    display: none;
  }
  .hero-section .hero-card {
    margin-top: 0px;
    width: 100%;
  }
  .hero-section .hero-card h1 {
    font-size: 2.2rem;
  }
  .hero-section .hero-card h1 .highlight-red {
    font-size: 2.8rem;
  }
  .hero-section .hero-card .event-details {
    flex-direction: column;
    gap: 20px;
  }
  .hero-section .hero-card .event-details .detail-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
  }
  .network-section .slide {
    flex: 0 0 100%;
  }
  .network-section .slider-container {
    padding: 0 20px;
  }
  .network-section .slider-btn {
    width: 35px;
    height: 35px;
  }
  .news-section .news-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
/* L'arrière-plan sombre */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px); /* Effet de flou moderne */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* Quand la modale est active */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* La boîte blanche */
.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.btn-close {
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: #007bff; /* À adapter à ta charte */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.btn-close:hover {
  background: #0056b3;
}

.grid-container {
  display: grid;
  gap: 30px;
  width: 100%;
}
.grid-container.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-container.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-container.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 992px) {
  .grid-container.cols-3, .grid-container.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
}

.grid-full-width {
  grid-column: 1/-1;
  padding: 40px;
  background: #f4f6f7;
  border-radius: 8px;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card:hover .card-img img {
  transform: scale(1.05);
}
.card .card-img {
  height: 220px;
  overflow: hidden;
}
.card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.card .card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card .card-content .card-tag {
  font-size: 0.8rem;
  color: #6e7238;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.card .card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #2b4f81;
}
.card .card-content p {
  font-size: 0.95rem;
  color: #3e5871;
  margin-bottom: 25px;
  flex-grow: 1;
}
.card .card-content .card-footer {
  margin-top: auto;
}
.card .card-content .card-footer .btn {
  align-self: flex-start;
}

.section-padding {
  padding: 80px 0;
}

.page-header {
  padding: 160px 0 80px;
  text-align: center;
}
.page-header.bg-blue {
  background-color: #2b4f81;
  color: #ffffff;
}
.page-header.bg-blue h1 {
  color: #ffffff;
}
.page-header.bg-blue .separator {
  background-color: #cb4b36;
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.page-header .lead {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0.9;
}

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

.page-classique-container {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1rem;
}
.page-classique-container .page-main-image {
  text-align: center;
  margin-bottom: 3rem;
}
.page-classique-container .page-main-image img {
  max-height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.page-classique-container h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #111111;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}
.page-classique-container .lead {
  font-size: 1.25rem;
  font-family: "Lato", sans-serif;
  color: #3e5871;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.declin-wysiwyg {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #2c3e50;
  font-family: "Lato", sans-serif;
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .declin-wysiwyg {
    padding: 3rem;
  }
}
.declin-wysiwyg h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  color: #cb4b36;
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(203, 75, 54, 0.1);
  padding-bottom: 0.5rem;
}
.declin-wysiwyg h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  color: #7b2d20;
  font-size: 1.4rem;
}
.declin-wysiwyg p {
  margin-bottom: 1.5rem;
}
.declin-wysiwyg ul,
.declin-wysiwyg ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  list-style-type: disc;
}
.declin-wysiwyg ul li,
.declin-wysiwyg ol li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.declin-wysiwyg ol {
  list-style-type: decimal;
}
.declin-wysiwyg a {
  color: #cb4b36;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.declin-wysiwyg a:hover {
  color: #a43b2a;
}
.declin-wysiwyg blockquote {
  border-left: 4px solid #cb4b36;
  padding-left: 1rem;
  font-style: italic;
  background: rgba(203, 75, 54, 0.05);
  padding: 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 2rem 0;
}
.declin-wysiwyg img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 20px 0;
}/*# sourceMappingURL=style.css.map */