/* === STYLE GLOBAL === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Merriweather", serif;
  background-color: #fafafa;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* === BOUTON RETOUR EN HAUT === */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #ddb892 0%, #c9a47a 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(176, 137, 104, 0.3);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #c9a47a 0%, #b08968 100%);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(176, 137, 104, 0.4);
}

.back-to-top:active {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 45px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  color: #b08968;
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: "Merriweather", serif;
  font-size: 1rem;
  text-align: center;
  max-width: 80%;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 15px 30px;
  border-radius: 5px;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(176, 137, 104, 0.8);
  color: #fff;
  border: none;
  font-size: 24px;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(176, 137, 104, 1);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 35px;
  }
  
  .lightbox-prev,
  .lightbox-next {
    padding: 10px 15px;
    font-size: 18px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-caption {
    font-size: 0.85rem;
    padding: 10px 20px;
    bottom: 20px;
  }
}

/* === TITRE ÉLÉGANT STYLISÉ === */
.elegant-title-section {
  background: linear-gradient(135deg, #f5f0eb 0%, #e8dfd5 100%);
  padding: 30px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.elegant-title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.elegant-title-main {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 400;
  color: #5a4a3a;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.elegant-title-connector {
  font-family: "Merriweather", serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: #8b7355;
  margin: 15px 0;
  font-weight: 400;
  text-transform: uppercase;
}

.elegant-title-script {
  font-family: "Zen Loop", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  color: #5a4a3a;
  margin: 15px 0 0 0;
  letter-spacing: 1px;
}

/* === HEADER MINIMALISTE === */
.minimal-header {
  background-color: #fff;
  padding: 20px 40px;
  border-bottom: 1px solid #e0e0e0;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 30px;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

/* Icônes réseaux sociaux */
.social-links {
  gap: 20px !important;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon.instagram {
  background-color: #f4dcd6;
  color: #c98d7f;
}

.social-icon.instagram:hover {
  background-color: #c98d7f;
  color: #fff;
  transform: translateY(-3px);
  opacity: 1;
}

.social-icon.facebook {
  background-color: #d6e4f4;
  color: #7f9fc9;
}

.social-icon.facebook:hover {
  background-color: #7f9fc9;
  color: #fff;
  transform: translateY(-3px);
  opacity: 1;
}

.social-icon.youtube {
  background-color: #f4d6d6;
  color: #c97f7f;
}

.social-icon.youtube:hover {
  background-color: #c97f7f;
  color: #fff;
  transform: translateY(-3px);
  opacity: 1;
}

.social-icon.pinterest {
  background-color: #f4e0d6;
  color: #c99a7f;
}

.social-icon.pinterest:hover {
  background-color: #c99a7f;
  color: #fff;
  transform: translateY(-3px);
  opacity: 1;
}

.nav-center {
  flex: 1;
  text-align: center;
}

.site-title {
  font-family: "Zen Loop", cursive;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #777;
}

.header-nav a {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  font-weight: 400;
}

/* === MENU LATERAL (SIDEBAR) === */
.sidebar-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: #fff;
  border-right: 1px solid #e0e0e0;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1000;
}

.sidebar-nav {
  padding: 0 30px;
}

.nav-item {
  margin-bottom: 5px;
}

.nav-item a {
  display: block;
  padding: 15px 0;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #333;
  font-weight: 400;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: #00455F;
}

.nav-item a i {
  font-size: 0.6rem;
  margin-left: 5px;
  opacity: 0.6;
}

.sidebar-social {
  padding: 0 30px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #333;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #00455F;
  color: #fff;
  transform: translateY(-2px);
}

/* Main wrapper avec décalage pour le sidebar */
.main-wrapper {
  margin-left: 250px;
}

/* === SECTION HERO SLIDESHOW === */
.hero-section {
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.featured-card {
  background-color: #f4e8e0;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 600px;
}

.featured-tag {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 20px;
  display: block;
}

.featured-card h2 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #b08968;
}

.featured-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.btn-read-more {
  display: inline-block;
  background-color: #b08968;
  color: #fff;
  padding: 12px 30px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-read-more:hover {
  background-color: #9a7557;
  opacity: 1;
}

/* Boutons de navigation du slideshow */
.slideshow-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: #b08968;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-slideshow:hover .slideshow-nav {
  opacity: 1;
}

.slideshow-nav:hover {
  background: rgba(176, 137, 104, 0.95);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
  left: 20px;
}

.slideshow-nav.next {
  right: 20px;
}

/* Indicateurs de pagination */
.slideshow-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slideshow-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slideshow-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.slideshow-dots .dot.active {
  background: #b08968;
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
}

/* Responsive du slideshow */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-image img,
  .featured-card {
    height: 450px;
  }

  .slideshow-nav {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
  }

  .hero-image img {
    height: 350px;
  }

  .featured-card {
    height: auto;
    padding: 40px 30px;
  }

  .featured-card h2 {
    font-size: 1.4rem;
  }

  .slideshow-nav {
    opacity: 1;
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .slideshow-nav.prev {
    left: 10px;
  }

  .slideshow-nav.next {
    right: 10px;
  }

  .slideshow-dots {
    bottom: 15px;
  }
}

/* === SECTION CATÉGORIES === */
.categories-section {
  padding: 40px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.categories-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  position: relative;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-overlay h3 {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  font-weight: 400;
}

/* === SECTION NEWSLETTER === */
.newsletter-section {
  background-color: #faf8f5;
  padding: 80px 40px;
  text-align: center;
}

.newsletter-container {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-title {
  font-family: "Zen Loop", cursive;
  font-size: 2.5rem;
  font-weight: 300;
  color: #666;
  margin-bottom: 15px;
}

.newsletter-subtitle {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 35px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.newsletter-form input {
  padding: 15px 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 0.9rem;
  flex: 1;
  max-width: 200px;
  font-family: "Merriweather", serif;
}

.newsletter-form button {
  padding: 15px 40px;
  background-color: #b08968;
  color: #fff;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #9a7557;
}

/* === SECTION ARTICLES EN VEDETTE === */
.featured-articles {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 50px;
  font-weight: 400;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.article-item {
  overflow: hidden;
  cursor: pointer;
}

.article-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-item:hover img {
  transform: scale(1.05);
}

/* === PAGE VOYAGES STYLE === */
.voyages-category-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
}

.category-main-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  color: #333;
  margin: 0 0 70px 0;
  letter-spacing: 0.5px;
}

.voyages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.voyage-card {
  text-align: left;
  cursor: pointer;
}

.voyage-card a {
  display: block;
  overflow: hidden;
}

.voyage-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.voyage-card:hover img {
  transform: scale(1.05);
}

.voyage-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  margin: 25px 0 0 0;
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.voyage-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.voyage-title a:hover {
  color: #b08968;
  opacity: 1;
}

/* Responsive Voyages */
@media (max-width: 1024px) {
  .voyages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  
  .category-main-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .voyages-category-section {
    padding: 60px 20px;
  }
  
  .voyages-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .category-main-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  
  .voyage-card img {
    height: 350px;
  }
  
  .voyage-title {
    font-size: 1.3rem;
  }
}

/* === SECTION PRODUITS === */
.products-section {
  background-color: #fff;
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header de la section avec titre et bouton */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin: 0;
  letter-spacing: 0.5px;
}

.browse-all-btn {
  background-color: #e8d5c4;
  color: #6b5d54;
  padding: 14px 32px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.browse-all-btn:hover {
  background-color: #dfc4b0;
  opacity: 1;
  transform: translateX(5px);
}

.products-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.product-card {
  text-align: left;
  background-color: #fff;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin-bottom: 20px;
}

.product-category {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
  font-weight: 400;
}

.product-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.3px;
}

.product-price {
  font-size: 0.85rem;
  color: #999;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 1024px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .products-container {
    grid-template-columns: 1fr;
  }
  
  .product-card img {
    height: 300px;
  }
}

/* === SECTION SERVICES === */
.services-section {
  background-color: #faf8f5;
  padding: 80px 40px;
  text-align: center;
}

.services-title {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 60px;
  font-weight: 400;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #fff;
  padding: 50px 35px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: #b08968;
  margin-bottom: 25px;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
  color: #c99a7f;
}

.service-icon i {
  display: inline-block;
  animation: gentleFloat 3s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #777;
  margin-bottom: 30px;
}

.service-btn {
  background-color: #d4b896;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-btn:hover {
  background-color: #b08968;
}

/* === FOOTER === */
.site-footer {
  background-color: #fff;
  padding: 30px 40px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.site-footer p {
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 1px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .sidebar-menu {
    width: 200px;
  }
  
  .main-wrapper {
    margin-left: 200px;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .featured-card {
    height: auto;
    padding: 40px;
  }
  
  .categories-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sidebar-menu {
    width: 60px;
    padding: 20px 0;
  }
  
  .sidebar-nav .nav-item a {
    font-size: 0;
    padding: 12px 0;
    text-align: center;
  }
  
  .sidebar-nav .nav-item a i {
    font-size: 1rem;
    margin: 0;
  }
  
  .sidebar-social {
    flex-direction: column;
    gap: 10px;
    padding: 0 14px;
  }
  
  .main-wrapper {
    margin-left: 60px;
  }

  .header-nav {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-left,
  .nav-right,
  .nav-center {
    flex: none;
  }
  
  .categories-container,
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    max-width: 100%;
  }

  .products-container,
  .services-container {
    grid-template-columns: 1fr;
  }
}

.logo-text h2 {
  font-family: 'Merriweather', serif;
  font-size: 22px;
  font-weight: 300;
  color: #5a5a5a;
  line-height: 2;
  letter-spacing: 0.3px;
  margin: 0;
  text-align: left;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* === SECTION BANNIÈRE === */
.banner-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.banner-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.45));
  z-index: 2;
}

.banner-container img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  display: block;
  transform-origin: center;
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-text-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(3px);
  border-radius: 10px;
}

.banner-title {
  color: #ffffff;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  font-family: "Playfair Display", serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  margin: 0 0 20px 0;
  line-height: 1.1;
  letter-spacing: 2px;
}

.banner-subtitle {
  color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-family: "Merriweather", serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
  margin: 0;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

/* === SECTIONS ARTICLE ALTERNÉES === */
.article-section-split {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.article-section-split.reverse {
  direction: rtl;
}

.article-section-split.reverse > * {
  direction: ltr;
}

.article-section-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.article-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-section-image:hover img {
  transform: scale(1.05);
}

.article-section-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.2;
}

.article-section-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

/* === SECTION CTA BOX === */
.article-cta-box {
  background-color: #f4e8e0;
  padding: 60px;
  text-align: center;
  max-width: 800px;
  margin: 80px auto;
  border-radius: 8px;
}

.article-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
  text-transform: uppercase;
}

.article-cta-box p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.article-cta-button {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 15px 40px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.article-cta-button:hover {
  background-color: #b08968;
  opacity: 1;
}

/* === SECTION DÉCOUVERTE RIVIAN === */
.discover-section {
  background-color: #f8f8f8;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.discover-container {
  width: 90%;
  max-width: 1400px;
  display: flex;
  justify-content: center;
}

/* Slider agrandi */
.discover-slider {
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 25px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Slides */
.slider-item {
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  justify-items: center;
  gap: 30px;
  transition: opacity 0.5s ease;
}

.slider-item img {
  width: 95%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin: 15px auto;
  background-color: #fff;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-item img:hover {
  transform: scale(1.02);
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.25);
}

/* Infos dans le slider */
.slider-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 15px;
}

.slider-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin: 0 0 15px 0;
}

.slider-info p {
  font-size: 15px;
  line-height: 1.6;
}

/* Boutons du slider */
.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-controls button {
  background: none;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  color: #555;
  font-size: 14px;
  transition: all 0.3s ease;
}

.slider-controls button:hover {
  background-color: #00455F;
  color: #fff;
  border-color: #dfa794;
}

/* === SECTION ABONNEMENT === */
.subscribe-section {
  background-color: #fff;
  padding: 15px 0;
  display: flex;
  justify-content: center;
}

.subscribe-container {
  background-color: #f8f8f8;
  width: 80%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 70% 30%;
  align-items: center;
  border-radius: 8px;
  padding: 40px;
  gap: 30px;
}

.subscribe-text h2 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.subscribe-text p {
  color: #555;
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

.subscribe-form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.subscribe-form input {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 70%;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.subscribe-form input:focus {
  border-color: #dfa794;
}

.subscribe-form button {
  padding: 10px 18px;
  background-color: #efcfc7;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #c87e69;
}

/* === SECTION ARTICLES (INDEX) === */
.articles-section {
  background-color: #fff;
  padding: 80px 20px;
}

.articles-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.article-item {
  width: 300px;
  background-color: #fafafa;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.article-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-item h3 {
  font-size: 18px;
  margin: 15px 20px 10px;
  color: #222;
}

.article-item a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.article-item a:hover {
  color: #888;
}

.article-item p {
  font-size: 14px;
  margin: 0 20px 20px;
  color: #555;
  line-height: 1.6;
}

/* === PAGE VOYAGES === */
.voyages-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #fff;
}

.voyage-card {
  width: 320px;
  background-color: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.voyage-card:hover {
  transform: translateY(-6px);
}

.voyage-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.voyage-card h3 {
  font-size: 18px;
  margin: 15px 20px 5px;
}

.voyage-card p {
  font-size: 14px;
  color: #555;
  margin: 0 20px 15px;
  line-height: 1.6;
}

/* === ARTICLES (pages individuelles) === */
.article-content {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  line-height: 1.9;
  font-family: "Merriweather", serif;
  font-size: 17px;
  color: #333;
}

/* === BANDEAU ARTICLES RELIÉS === */
.related-articles {
  background-color: #ffffff;
  padding: 35px 0;
  text-align: center;
  font-family: "Merriweather", serif;
  border-top: 1px solid #e0e0e0;
}

.related-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: #00455F;
  margin-bottom: 40px;
}

.related-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.related-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 300px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.8s ease;
}

.related-item.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.related-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.related-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-item h3 {
  font-size: 18px;
  color: #222;
  margin: 15px 0 8px;
}

.related-item p {
  font-size: 14px;
  color: #555;
  padding: 0 15px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.related-link {
  display: inline-block;
  margin-bottom: 18px;
  background-color: #a8d3d3;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.related-link:hover {
  background-color: #c87e69;
}

/* === FOOTER === */
.site-footer,
.article-footer {
  background-color: #fff;
  text-align: center;
  padding-top: 20px;
  color: #555;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.footer-separator {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin-bottom: 15px;
}

/* === BOUTON REMONTER === */
#scrollToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  background-color: #a8d3d3;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 9999;
}

#scrollToTop:hover {
  background-color: #c87e69;
  transform: translateY(-4px);
}

/* === ALBUM PHOTO (3 PHOTOS VERTICALES) === */
.album-section {
  background-color: #f2f2f2;
  padding: 35px 0;
  display: flex;
  justify-content: center;
}

.album-container {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.album-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.album-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.album-photo {
  width: 240px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  border-radius: 4px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.album-photo:hover {
  transform: scale(1.05) rotate(0deg) !important;
  box-shadow: 0 16px 35px rgba(0,0,0,0.3);
}

/* Rotations */
.album-item:nth-child(1) .album-photo { transform: rotate(-5deg); }
.album-item:nth-child(2) .album-photo { transform: rotate(3deg); }
.album-item:nth-child(3) .album-photo { transform: rotate(-4deg); }

/* Légendes */
.album-caption {
  font-family: "Pacifico", cursive;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #7a7a7a;
  opacity: 0.9;
  white-space: nowrap;
  text-align: center;
}

/* Rotations des légendes pour correspondre aux photos */
.album-item:nth-child(1) .album-caption { transform: translateX(-50%) rotate(-5deg); }
.album-item:nth-child(2) .album-caption { transform: translateX(-50%) rotate(3deg); }
.album-item:nth-child(3) .album-caption { transform: translateX(-50%) rotate(-4deg); }

/* === ALBUM PHOTO (2 PHOTOS HORIZONTALES) === */
.album-horizontal {
  background-color: #f2f2f2;
  padding: 35px 0;
  display: flex;
  justify-content: center;
}

.album-horizontal-container {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.album-horizontal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.album-horizontal-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.album-horizontal-photo {
  width: 420px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  border-radius: 4px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.album-horizontal-photo:hover {
  transform: scale(1.05) rotate(0deg);
  box-shadow: 0 16px 35px rgba(0,0,0,0.3);
}

/* Légendes horizontales */
.album-horizontal-caption {
  font-family: "Pacifico", cursive;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #7a7a7a;
  opacity: 0.9;
  white-space: nowrap;
  text-align: center;
}

/* === PHOTO À GAUCHE + TEXTE À DROITE === */
.album-photo-text {
  background-color: transparent;
  display: flex;
  justify-content: center;
  margin: 60px auto;
  max-width: 1000px;
  gap: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.album-photo-text.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.album-photo-text-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.album-photo-text-image {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.album-photo-text-image img {
  width: 400px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 10px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  border-radius: 4px;
  transform: rotate(-3deg);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.album-photo-text-caption {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  font-family: "Pacifico", cursive;
  font-size: 11px;
  color: #7a7a7a;
  text-align: center;
  opacity: 0.9;
  white-space: nowrap;
}

/* Texte */
.album-photo-text-content {
  flex: 1;
  font-family: "Merriweather", serif;
  font-size: 15px;
  line-height: 1.9;
  color: #000;
  text-align: justify;
  margin-top: -30px;
}

/* === ALBUM PHOTO (3 PHOTOS INVERSES) === */
.album-section-inverse {
  background-color: #f2f2f2;
  padding: 35px 0;
  display: flex;
  justify-content: center;
}

.album-container-inverse {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.album-item-inverse {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.album-item-inverse.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Photos mêmes dimensions que le premier album */
.album-photo-inverse {
  width: 240px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 10px solid #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  border-radius: 4px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

/* Inversion des rotations */
.album-item-inverse:nth-child(1) .album-photo-inverse { transform: rotate(5deg); }
.album-item-inverse:nth-child(2) .album-photo-inverse { transform: rotate(-3deg); }
.album-item-inverse:nth-child(3) .album-photo-inverse { transform: rotate(4deg); }

.album-photo-inverse:hover {
  transform: scale(1.05) rotate(0deg);
  box-shadow: 0 16px 35px rgba(0,0,0,0.3);
}

/* Légendes uniformisées */
.album-caption-inverse {
  font-family: "Pacifico", cursive;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #7a7a7a;
  opacity: 0.9;
  white-space: nowrap;
  text-align: center;
}




/* === RESPONSIVE DESIGN === */

/* Tablettes (768px–1024px) */
@media (max-width: 1024px) {
  .main-menu ul {
    gap: 20px;
  }

  .discover-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .subscribe-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .subscribe-form {
    justify-content: center;
  }

  .album-horizontal-container,
  .album-container,
  .album-container-inverse {
    flex-wrap: wrap;
  }
}

/* Mobiles (moins de 768px) */
@media (max-width: 768px) {
  body {
    padding-top: 55px;
    font-size: 15px;
  }

  .top-bar {
    flex-direction: column;
    height: auto;
    gap: 8px;
    padding: 10px;
  }

  .main-menu {
    position: static;
    transform: none;
  }

  .main-menu ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .logo-section {
    padding: 30px 10px;
  }

  .banner-container {
    max-height: 240px;
  }

  .banner-text-wrapper {
    padding: 15px;
    background: rgba(0, 0, 0, 0.25);
  }

  .banner-title {
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .banner-subtitle {
    font-size: 0.9rem;
    padding: 0 15px;
  }

  .discover-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .discover-slider {
    margin: 0;
  }

  .subscribe-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 10px;
  }

  .subscribe-form input {
    width: 100%;
  }

  .articles-container {
    gap: 20px;
  }

  .article-item {
    width: 100%;
  }

  .voyages-grid {
    gap: 20px;
  }

  .voyage-card {
    width: 100%;
  }

  .album-container,
  .album-container-inverse,
  .album-horizontal-container {
    flex-direction: column;
    gap: 25px;
  }

  .album-photo,
  .album-photo-inverse,
  .album-horizontal-photo {
    width: 100%;
    max-width: 90%;
  }

  .album-photo-text-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .album-photo-text-image img {
    width: 100%;
    max-width: 90%;
  }

  .album-photo-text-content {
    text-align: center;
    margin-top: 0;
  }

  #scrollToTop {
    right: 15px;
    bottom: 15px;
  }
}
/* === STYLES BLOG === */

/* En-tête de section blog */
.blog-header {
  text-align: center;
  margin: 60px auto 50px;
  max-width: 800px;
  padding: 0 20px;
}

.blog-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.blog-header p {
  font-size: 18px;
  color: #666;
  font-weight: 300;
  line-height: 1.6;
}

/* Conteneur principal blog */
.blog-section {
  background-color: #ffffff;
  padding: 40px 0 80px;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

/* Carte d'article de blog */
.blog-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Image de l'article */
.blog-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

/* Catégorie badge */
.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #00455F;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
}

/* Contenu de l'article */
.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin: 15px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-content h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-content h3:hover {
  color: #00455F;
}

.blog-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Métadonnées */
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #888;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: #00455F;
  font-size: 12px;
}

/* Bouton lire plus */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #00455F;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more:hover {
  gap: 12px;
  color: #003244;
}

.read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(4px);
}

/* Bouton voir tous les articles */
.blog-view-all {
  text-align: center;
  margin-top: 50px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #00455F;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,69,95,0.2);
}

.btn-view-all:hover {
  background-color: #003244;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,69,95,0.3);
  gap: 14px;
}

.btn-view-all i {
  transition: transform 0.3s ease;
}

.btn-view-all:hover i {
  transform: translateX(4px);
}

/* Responsive blog */
@media (max-width: 1024px) {
  .blog-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .blog-header h2 {
    font-size: 32px;
  }

  .blog-header p {
    font-size: 16px;
  }

  .blog-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-card {
    margin: 0 10px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content h3 {
    font-size: 21px;
  }

  .blog-meta {
    font-size: 12px;
    gap: 10px;
  }
}

/* === STYLES BOUTONS PARTAGE SOCIAL ARTICLE === */
.social-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 16px;
}

.social-share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* === RESPONSIVE SECTIONS ARTICLE === */
@media (max-width: 1024px) {
  .article-section-split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
    margin: 60px auto;
  }

  .article-section-split.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .article-section-split {
    padding: 0 20px;
    margin: 40px auto;
  }

  .article-section-text h2 {
    font-size: 1.8rem;
  }

  .article-cta-box {
    padding: 40px 25px;
    margin: 40px 20px;
  }

  .article-cta-box h3 {
    font-size: 1.5rem;
  }
}

/* === NOUVEAU DESIGN STORY/ARTICLE === */
.story-hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.story-hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
  z-index: 2;
}

.story-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.story-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 0 30px;
}

.story-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(176, 137, 104, 0.9);
  padding: 8px 24px;
  margin-bottom: 30px;
  border-radius: 30px;
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
  letter-spacing: 8px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #f4e8e0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.9))
          drop-shadow(0 0 40px rgba(244, 232, 224, 0.5))
          drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
  position: relative;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 40px rgba(244, 232, 224, 0.5))
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.7));
  }
  100% {
    filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.9))
            drop-shadow(0 0 60px rgba(244, 232, 224, 0.8))
            drop-shadow(0 3px 6px rgba(0, 0, 0, 0.8));
  }
}

.story-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-family: 'Merriweather', serif;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
  font-style: italic;
}

/* Section intro */
.story-intro {
  background: linear-gradient(135deg, #f4e8e0 0%, #e8d5c4 100%);
  padding: 30px 20px;
  text-align: center;
  font-size: 20px;
}

.story-intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-lead {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.7;
  color: #5a4a3a;
  font-weight: 400;
  margin: 0;
}

/* Galeries horizontales */
.story-gallery-horizontal {
  padding: 40px 20px;
  background-color: #f5f0eb;
  margin: 30px 0;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 0;
}

/* Galerie 2x2 */
.gallery-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 0;
}

/* Galerie 3 colonnes */
.gallery-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  margin: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  aspect-ratio: 452 / 560;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Galerie double */
.story-gallery-double {
  padding: 60px 40px;
  background-color: #fafafa;
}

.gallery-item-large {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  aspect-ratio: 452 / 560;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-item-large:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sections de texte */
.story-text-section {
  padding: 100px 40px;
}

.story-text-container {
  max-width: 800px;
  margin: 0 auto;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
  line-height: 1.2;
}

.story-text-container p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 30px;
  font-family: 'Merriweather', serif;
}

/* Variations de fond */
.bg-beige {
  background-color: #f9f5f0;
}

.bg-light {
  background-color: #fff;
}

.bg-dark {
  background: linear-gradient(135deg, #3a3027 0%, #2a251d 100%);
}

.text-light {
  color: #e8dfd5 !important;
}

/* === ARTICLE HERO LAYOUT === */
.article-hero-layout {
  background-color: #fafafa;
  padding: 60px 40px 80px;
}

.article-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: start;
}

.article-hero-left {
  position: relative;
}

.article-hero-image {
  width: 100%;
  position: relative;
  margin-bottom: 30px;
  background: #f5f0eb;
  padding: 40px 20px;
}

.article-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 15px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

.article-category-badge {
  position: absolute;
  bottom: 75px;
  left: 55px;
  background-color: rgba(176, 137, 104, 0.9);
  color: #fff;
  padding: 10px 24px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  font-family: "Merriweather", serif;
  z-index: 2;
}

.article-hero-content {
  padding: 40px 30px;
  background-color: #ffffff;
  margin-bottom: 30px;
}

.article-hero-title {
  font-family: "Zen Loop", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  color: #333;
  margin: 0 0 25px 0;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.article-hero-text {
  font-family: "Merriweather", serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  margin: 0;
  text-align: justify;
}

/* Galeries dans article-hero-left */
.article-hero-left .story-gallery-horizontal {
  margin: 20px 0;
  width: 100%;
}

.article-hero-left .story-intro {
  margin: 20px 0;
}

/* About Card à droite */
.article-hero-right {
  position: relative;
}

.about-card {
  background-color: #fff;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.about-title {
  font-family: "Zen Loop", cursive;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: #333;
  margin: 0 0 30px 0;
}

.about-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 30px;
  border: 5px solid #f5f0eb;
  background-color: #f8f3d7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-description {
  font-family: "Merriweather", serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  margin: 0 0 30px 0;
  text-align: center;
}

.about-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.about-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f0eb;
  color: #b08968;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.about-social-icon:hover {
  background-color: #b08968;
  color: #fff;
  transform: translateY(-3px);
  opacity: 1;
}

.about-signature {
  padding-top: 20px;
  border-top: 1px solid #e8dfd5;
}

.about-signature img {
  max-width: 150px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Let's Be Friends Section */
.lets-be-friends {
  margin: 30px 0;
  text-align: center;
}

.friends-header {
  background-color: #f5f0eb;
  padding: 15px 20px;
  font-family: "Zen Loop", cursive;
  font-size: 2.08rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: #333;
  margin-bottom: 25px;
}

.friends-text {
  font-family: "Merriweather", serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #888;
  margin: 0 0 25px 0;
}

.friends-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.friends-social-icon {
  width: 50px;
  height: 50px;
  background-color: #d9d9d9;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.friends-social-icon:hover {
  background-color: #b08968;
  color: #fff;
  transform: translateY(-3px);
}

.friends-social-icon.liked {
  background-color: #e74c3c;
  color: #fff;
}

.friends-social-icon.liked:hover {
  background-color: #c0392b;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Tags Card */
.tags-card {
  background-color: #fff;
  padding: 50px 40px;
  margin-top: 30px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.tags-title {
  font-family: "Zen Loop", cursive;
  font-size: 2.08rem;
  font-weight: 500;
  letter-spacing: 3px;
  color: #333;
  margin: 0 0 30px 0;
  text-align: center;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tag-item {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #777;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Merriweather", serif;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tag-item:hover {
  background-color: #b08968;
  border-color: #b08968;
  color: #fff;
  opacity: 1;
  transform: translateY(-2px);
}

/* Subscribe Card */
.subscribe-card {
  margin-top: 30px;
  background: linear-gradient(1deg, #f9f0ed 0%, #f9f0ed 0%);
  background-size: cover;
  background-position: center;
  padding: 20px 40px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: relative;
}

.subscribe-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
}

.subscribe-title {
  font-family: "Zen Loop", cursive;
  font-size: 2.08rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: #b08968;
  margin: 0 0 20px 0;
  text-align: center;
}

.subscribe-description {
  font-family: "Merriweather", serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #b08968;
  margin: 0 0 35px 0;
  text-align: center;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscribe-input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  background-color: #fff;
  color: #333;
  font-family: "Merriweather", serif;
  font-size: 0.95rem;
  text-align: center;
  outline: none;
  transition: all 0.3s ease;
}

.subscribe-input::placeholder {
  color: #999;
}

.subscribe-input:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.subscribe-button {
  width: 100%;
  padding: 16px 30px;
  background-color: #000;
  color: #fff;
  border: none;
  font-family: "Merriweather", serif;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.subscribe-button:hover {
  background-color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Categories Card */
.categories-card {
  margin-top: 30px;
  background-color: #fff;
  padding: 50px 40px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.categories-title {
  font-family: "Zen Loop", cursive;
  font-size: 2.08rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: #333;
  margin: 0 0 25px 0;
  text-align: center;
  background-color: #f5f0eb;
  padding: 15px 20px;
}

.categories-select-wrapper {
  position: relative;
}

.categories-select {
  width: 100%;
  padding: 18px 20px;
  background-color: #f5f5f5;
  border: none;
  font-family: "Merriweather", serif;
  font-size: 1rem;
  color: #888;
  cursor: pointer;
  appearance: none;
  outline: none;
  transition: all 0.3s ease;
}

.categories-select:hover {
  background-color: #ebebeb;
}

.categories-select:focus {
  background-color: #e0e0e0;
}

.categories-select option {
  padding: 10px;
  background-color: #fff;
  color: #333;
}

.categories-select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #888;
  font-size: 1.2rem;
}

/* Favorites Card */
.favorites-card {
  margin-top: 30px;
  background-color: #fff;
  padding: 50px 40px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.favorites-title {
  font-family: "Zen Loop", cursive;
  font-size: 2.8rem;
  font-weight: 400;
  color: #333;
  margin: 0 0 35px 0;
  text-align: center;
  letter-spacing: 1px;
}

.favorite-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}

.favorite-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.favorite-link {
  display: flex;
  gap: 20px;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.favorite-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.favorite-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.favorite-link:hover .favorite-image img {
  transform: scale(1.05);
}

.favorite-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.favorite-categories {
  font-family: "Merriweather", serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #999;
  margin: 0 0 10px 0;
}

.favorite-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.favorite-link:hover .favorite-title {
  color: #b08968;
}

/* Responsive */
@media (max-width: 1024px) {
  .article-hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .article-hero-right {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .article-hero-layout {
    padding: 40px 20px 60px;
  }
  
  .article-hero-image {
    padding: 20px 15px;
  }
  
  .article-hero-image img {
    height: 350px;
    border: 10px solid white;
  }
  
  .article-category-badge {
    bottom: 50px;
    left: 45px;
    font-size: 0.75rem;
    padding: 8px 18px;
  }
  
  .article-hero-title {
    font-size: 2rem;
  }
  
  .article-hero-content {
    padding: 30px 20px;
  }
  
  .about-card {
    padding: 40px 25px;
  }
  
  .subscribe-card {
    padding: 50px 25px;
  }
  
  .subscribe-title {
    font-size: 1.5rem;
  }
  
  /* Galeries responsive */
  .gallery-grid-2x2,
  .gallery-grid-3 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .story-gallery-horizontal {
    padding: 30px 15px;
  }
  
  .gallery-item,
  .gallery-item-large {
    padding: 10px;
  }
}

/* Image pleine largeur */
.story-full-image {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
}

.story-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  padding: 30px 50px;
  text-align: center;
  box-sizing: border-box;
}

.hero-title-overlay .elegant-title-main {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  font-family: "Zen Loop", cursive;
}

.hero-title-overlay .elegant-title-connector {
  color: #e8dfd5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Section highlight/citation */
.story-highlight {
  background: linear-gradient(135deg, #b08968 0%, #9a7557 100%);
  padding: 80px 40px;
  text-align: center;
}

.highlight-content blockquote {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  font-style: italic;
  position: relative;
  padding: 0 60px;
}

.highlight-content blockquote::before {
  content: '"';
  font-size: 6rem;
  position: absolute;
  top: -30px;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
  font-family: Georgia, serif;
}

/* Section CTA finale */
.story-cta {
  background: linear-gradient(135deg, #f4e8e0 0%, #d4b896 100%);
  padding: 120px 40px;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  margin-bottom: 25px;
  color: #3a3027;
}

.cta-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 45px;
  font-family: 'Merriweather', serif;
}

.cta-button {
  display: inline-block;
  background-color: #3a3027;
  color: #fff;
  padding: 18px 50px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(58, 48, 39, 0.3);
}

.cta-button:hover {
  background-color: #b08968;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(176, 137, 104, 0.4);
  opacity: 1;
}

/* Responsive Story Layout */
@media (max-width: 1024px) {
  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .story-text-section {
    padding: 70px 30px;
  }
}

@media (max-width: 768px) {
  .story-hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .story-title {
    font-size: 2.5rem;
  }
  
  .story-intro {
    padding: 60px 25px;
  }
  
  .gallery-row {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid-2x2 {
    grid-template-columns: 1fr;
  }
  
  .story-text-section {
    padding: 50px 25px;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .story-text-container p {
    font-size: 1rem;
  }
  
  .highlight-content blockquote {
    font-size: 20px;
    padding: 0 30px;
  }
  
  .story-cta {
    padding: 80px 25px;
  }
}
