/* ===== VARIABLES CSS ===== */
:root {
  --accent: #8BC34A;
  --dark: #0a0f1a;
  --text-gray: #6b7280;
  --light-bg: #f9fafb;
}

/* ===== RESET & BASE ===== */
* {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SLIDER HERO ===== */
.hero-slider {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #f8fdf4 0%, #ffffff 100%);
  overflow: hidden;
  padding: 60px 0;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  visibility: hidden;
}

.slide.active {
  opacity: 1;
  position: relative;
  visibility: visible;
  z-index: 1;
}

.slide-image-wrapper {
  flex: 0 0 auto;
  max-width: 450px;
  width: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.slide-image-wrapper:hover {
  transform: translateY(-10px) scale(1.02);
}

.slide-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.slide-content {
  flex: 1;
  text-align: left;
  color: var(--dark);
  max-width: 600px;
}

.slide-content h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -1px;
}

.slide-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--text-gray);
  line-height: 1.7;
}

.slide-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(139, 195, 74, 0.3);
}

.slide-btn:hover {
  background: #7CAC3A;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 195, 74, 0.5);
  color: white;
}

/* Badge sur l'image */
.slide-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
  z-index: 2;
}

/* Contrôles du slider */
.slider-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(139, 195, 74, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slider-dot:hover {
  background: rgba(139, 195, 74, 0.6);
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.3);
}

/* Flèches de navigation */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: var(--accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(139, 195, 74, 0.3);
}

.slider-arrow.prev {
  left: -60px;
}

.slider-arrow.next {
  right: -60px;
}

/* ===== INTRODUCTION SECTION ===== */
.intro-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2332 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(139, 195, 74, 0.03) 10px,
    rgba(139, 195, 74, 0.03) 20px
  );
  pointer-events: none;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.intro-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.intro-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 40px;
  background: linear-gradient(135deg, white 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -1px;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.intro-text strong {
  color: var(--accent);
  font-weight: 700;
}

.intro-text em {
  color: var(--accent);
  font-style: italic;
}

.highlight-text {
  background: rgba(139, 195, 74, 0.15);
  padding: 28px;
  border-radius: 16px;
  border-left: 5px solid var(--accent);
  margin: 32px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cultural-highlights {
  background: rgba(255, 255, 255, 0.08);
  padding: 36px;
  border-radius: 20px;
  margin: 40px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cultural-highlights > p {
  margin-bottom: 24px;
  font-size: 1.15rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.event-item {
  background: rgba(139, 195, 74, 0.2);
  padding: 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.event-item:hover {
  background: var(--accent);
  transform: translateY(-5px);
  border-color: white;
  box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
}

.mission-statement {
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.25), rgba(139, 195, 74, 0.1));
  padding: 36px;
  border-radius: 20px;
  margin: 40px 0;
  border: 2px solid rgba(139, 195, 74, 0.4);
  box-shadow: 0 4px 20px rgba(139, 195, 74, 0.15);
}

.mission-statement p {
  margin-bottom: 16px;
}

.mission-highlight {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
  line-height: 1.6;
}

.accent-text {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(139, 195, 74, 0.3);
}

.closing-statement {
  margin-top: 48px;
  text-align: center;
}

.closing-statement p {
  font-size: 1.25rem;
  margin-bottom: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.welcome-text {
  font-size: 1.2rem !important;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 2px solid rgba(139, 195, 74, 0.3);
  color: white;
  font-weight: 400;
  line-height: 1.8;
}

.welcome-text strong {
  color: var(--accent);
  font-weight: 800;
}

/* ===== CATALOGUE PHOTOS ===== */
.photo-catalog {
  padding: 100px 0 60px;
  background: white;
}

.catalog-header {
  text-align: center;
  margin-bottom: 60px;
}

.catalog-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.catalog-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.catalog-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: white;
}

.catalog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.catalog-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 125%; /* Ratio 4:5 pour images portrait */
  overflow: hidden;
  background: var(--light-bg);
}

.catalog-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.catalog-item:hover .catalog-image-wrapper img {
  transform: scale(1.1);
}

.catalog-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.7) 70%, transparent 100%);
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.catalog-item:hover .catalog-overlay {
  transform: translateY(0);
}

.catalog-item-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.catalog-item-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.catalog-btn:hover {
  background: #7CAC3A;
  color: white;
  transform: translateX(5px);
}

.catalog-footer {
  text-align: center;
}

.btn-catalog-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(139, 195, 74, 0.3);
}

.btn-catalog-more:hover {
  background: #7CAC3A;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 195, 74, 0.5);
}

.btn-catalog-more i {
  transition: transform 0.3s ease;
}

.btn-catalog-more:hover i {
  transform: translateX(5px);
}

/* ===== VISION SECTION ===== */
.vision-section {
  padding: 80px 0 100px;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.vision-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: var(--light-bg);
  height: 100%;
}

.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 195, 74, 0.15);
  background: white;
}

.vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
}

.vision-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.vision-text {
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, var(--light-bg) 100%);
}

.step-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 195, 74, 0.2);
  border-color: var(--accent);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.step-description {
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: white;
}

.testimonial-card {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
  background: white;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}

.author-name {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.author-title {
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #7CAC3A 100%);
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.btn-cta {
  background: white;
  color: var(--accent);
  padding: 16px 48px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: var(--accent);
}

.btn-contact {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #7CAC3A;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 195, 74, 0.3);
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #8BC34A;
  letter-spacing: 0.5px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-link:hover {
  color: #8BC34A;
  padding-left: 10px;
}

/* ===== NEWSLETTER FORM ===== */
.newsletter-form {
  position: relative;
}

.newsletter-wrapper {
  display: flex;
  width: 100%;
}

.newsletter-input {
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 14px 20px;
  border-radius: 10px 0 0 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
}

.newsletter-input:focus {
  outline: none;
  border-color: #8BC34A;
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-newsletter {
  background: linear-gradient(135deg, #8BC34A, #4CAF50);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 0 10px 10px 0;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-newsletter:hover {
  background: linear-gradient(135deg, #4CAF50, #8BC34A);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 195, 74, 0.3);
}

.btn-newsletter:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.newsletter-message {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}

.newsletter-message.success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid #4CAF50;
  color: #8BC34A;
}

.newsletter-message.error {
  background: rgba(255, 107, 107, 0.2);
  border: 1px solid #ff6b6b;
  color: #ff9f9f;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SOCIAL ICONS ===== */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #8BC34A;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #8BC34A;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== MODAL ===== */
.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px 32px;
}

.modal-body {
  padding: 32px;
}

.contact-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Catalogue Photos */
  .photo-catalog {
    padding: 60px 0 40px;
  }

  .catalog-title {
    font-size: 2rem;
  }

  .catalog-subtitle {
    font-size: 1rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }

  .catalog-item-title {
    font-size: 1.2rem;
  }

  .catalog-overlay {
    padding: 20px 16px 16px;
  }

  /* Vision */
  .vision-section {
    padding: 60px 0 80px;
  }

  /* Slider */
  .hero-slider {
    padding: 40px 0;
  }

  .slide {
    flex-direction: column;
    gap: 30px;
  }

  .slide-image-wrapper {
    max-width: 100%;
    width: 90%;
  }

  .slide-content {
    text-align: center;
    padding: 0 20px;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .slider-arrow.prev {
    left: 10px;
  }

  .slider-arrow.next {
    right: 10px;
  }

  .slider-controls {
    margin-top: 30px;
  }

  /* Intro section */
  .intro-section {
    padding: 60px 0;
  }

  .intro-title {
    font-size: 2.5rem;
  }

  .intro-text p {
    font-size: 1rem;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .mission-highlight {
    font-size: 1.1rem;
  }

  .closing-statement p {
    font-size: 1.05rem;
  }

  /* Hero section */
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* Section titles */
  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .floating-badge {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  /* Footer */
  .site-footer {
    padding: 40px 0 20px;
  }

  .newsletter-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter-input {
    border-radius: 10px;
    width: 100%;
    font-size: 16px;
  }

  .btn-newsletter {
    border-radius: 10px;
    width: 100%;
    padding: 14px 20px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-title {
    font-size: 1.1rem;
  }
}

/* Très petit mobile (< 400px) */
@media (max-width: 400px) {
  .photo-catalog {
    padding: 40px 0 30px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 25px;
  }

  .catalog-title {
    font-size: 1.75rem;
  }

  .btn-catalog-more {
    padding: 14px 30px;
    font-size: 1rem;
  }

  .vision-section {
    padding: 50px 0 70px;
  }

  .hero-slider {
    padding: 30px 0;
  }

  .slide-image-wrapper {
    width: 100%;
    border-radius: 12px;
  }

  .slide-content h2 {
    font-size: 1.75rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .slide-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .newsletter-input {
    font-size: 14px;
    padding: 12px 16px;
  }

  .btn-newsletter {
    font-size: 0.9rem;
    padding: 12px 16px;
  }
}

/* Tablette et petit desktop */
@media (min-width: 769px) and (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .slide-image-wrapper {
    max-width: 350px;
  }

  .slide-content h2 {
    font-size: 2.5rem;
  }

  .slider-arrow.prev {
    left: 10px;
  }

  .slider-arrow.next {
    right: 10px;
  }
}