/* 
  NovaRevue Affaires - Main Stylesheet
  Colors:
  #0F0E17 - Dark background
  #FF8E3C - Orange accent
  #A7A9BE - Steel gray
  #EDEDF4 - Light lavender
  #FFFFFF - White
*/

/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #A7A9BE;
  background-color: #0F0E17;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #FF8E3C;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #FF8E3C;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  line-height: 1.2;
  color: #EDEDF4;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FF8E3C, transparent);
  margin: 15px auto 0;
}

p {
  margin-bottom: 1.2em;
}

section {
  padding: 80px 0;
  position: relative;
}

ul {
  list-style: none;
}

/* ===== Buttons ===== */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
}

.btn-primary {
  background-color: #FF8E3C;
  color: #0F0E17;
  border: 2px solid #FF8E3C;
}

.btn-secondary {
  background-color: transparent;
  color: #FF8E3C;
  border: 2px solid #FF8E3C;
}

.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(255, 142, 60, 0.2);
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #ff9c53;
}

.btn-secondary:hover {
  background-color: rgba(255, 142, 60, 0.1);
}

.btn-primary:active, .btn-secondary:active {
  transform: translateY(-1px);
}

/* ===== Header & Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(15, 14, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(167, 169, 190, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  text-decoration: none;
}

.logo-svg {
  display: block;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.menu-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FF8E3C;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: #EDEDF4;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF8E3C;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #FF8E3C;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-btn {
  background-color: #FF8E3C;
  color: #0F0E17 !important;
  padding: 8px 16px !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #ff9c53;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 142, 60, 0.2);
}

.nav-btn::after {
  display: none;
}

/* ===== Welcome Section ===== */
.section-bienvenue {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 14, 23, 0.9), rgba(15, 14, 23, 0.7)), url('../img/wJdopX.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.section-bienvenue::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 142, 60, 0.3), transparent 70%);
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.section-bienvenue::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 237, 244, 0.1), transparent 70%);
  z-index: 0;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.section-bienvenue h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 10;
}

.section-bienvenue .subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #EDEDF4;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
  position: relative;
  z-index: 10;
}

.section-bienvenue .btn-primary {
  animation: fadeInUp 1s ease-out 0.4s;
  animation-fill-mode: both;
  position: relative;
  z-index: 10;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== About Section ===== */
.section-a-propos {
  background-color: #EDEDF4;
  color: #0F0E17;
}

.section-a-propos h2, 
.section-a-propos h3 {
  color: #0F0E17;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-images {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.about-image {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(15, 14, 23, 0.2);
  transition: all 0.5s ease;
  max-height: 400px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.about-image:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 25px 40px rgba(15, 14, 23, 0.3);
}

.about-images::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  border: 4px solid #FF8E3C;
  border-radius: 10px;
  top: 40px;
  left: 40px;
  z-index: 1;
}

/* ===== Tarifs Section ===== */
.section-tarifs {
  background-color: #0F0E17;
  position: relative;
  overflow: hidden;
}

.section-tarifs::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 142, 60, 0.1), transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  z-index: 1;
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.tarif-card {
  background-color: #EDEDF4;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.tarif-card h3 {
  color: #0F0E17;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.tarif-card .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FF8E3C;
  margin-bottom: 25px;
}

.tarif-card ul {
  margin-bottom: 30px;
  flex-grow: 1;
}

.tarif-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 14, 23, 0.1);
  color: #0F0E17;
}

.tarif-card li:last-child {
  border-bottom: none;
}

.tarif-card.featured {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 142, 60, 0.2);
  border: 2px solid #FF8E3C;
  z-index: 3;
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #FF8E3C;
  color: #FFFFFF;
  padding: 5px 15px;
  font-size: 0.9rem;
  font-weight: bold;
  border-bottom-left-radius: 10px;
}

.tarif-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 14, 23, 0.2);
}

.tarif-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

/* ===== Editions Section ===== */
.section-editions {
  background-color: #EDEDF4;
  color: #0F0E17;
}

.section-editions h2 {
  color: #0F0E17;
}

.editions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.edition-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(15, 14, 23, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.edition-cover {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.edition-card h3 {
  color: #0F0E17;
  padding: 20px 20px 5px;
}

.edition-card p {
  color: #A7A9BE;
  padding: 0 20px 20px;
}

.edition-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 14, 23, 0.2);
}

.edition-card:hover .edition-cover {
  transform: scale(1.05);
}

/* ===== Testimonials Section ===== */
.section-temoignages {
  background-color: #0F0E17;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-temoignages::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 142, 60, 0.1), transparent 70%);
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
}

.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 200px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
  z-index: 1;
  visibility: hidden;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
  visibility: visible;
}

.testimonial-content {
  background-color: #1a1926;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 15px 15px 0;
  border-style: solid;
  border-color: #1a1926 transparent transparent;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.testimonial-content p::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -15px;
  color: rgba(255, 142, 60, 0.2);
  z-index: -1;
}

.testimonial-author {
  margin-top: 30px;
  font-weight: bold;
  color: #FF8E3C;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.testimonial-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #A7A9BE;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-btn.active, .testimonial-btn:hover {
  background-color: #FF8E3C;
  transform: scale(1.2);
}

/* Testimonial CSS-only Slider */
#testimonial-1:target ~ .testimonial-nav .testimonial-btn:nth-child(1),
#testimonial-2:target ~ .testimonial-nav .testimonial-btn:nth-child(2),
#testimonial-3:target ~ .testimonial-nav .testimonial-btn:nth-child(3) {
  background-color: #FF8E3C;
  transform: scale(1.2);
}

#testimonial-1:target ~ .testimonials-container .testimonial {
  opacity: 0;
  visibility: hidden;
}

#testimonial-1:target ~ .testimonials-container #testimonial-1,
#testimonial-2:target ~ .testimonials-container #testimonial-2,
#testimonial-3:target ~ .testimonials-container #testimonial-3 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ===== Form Section ===== */
.section-commande {
  background: linear-gradient(135deg, #0F0E17, #1a1926);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-commande::before,
.section-commande::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  z-index: 1;
}

.section-commande::before {
  background: radial-gradient(circle, rgba(255, 142, 60, 0.1), transparent 70%);
  top: -150px;
  right: -150px;
}

.section-commande::after {
  background: radial-gradient(circle, rgba(237, 237, 244, 0.05), transparent 70%);
  bottom: -150px;
  left: -150px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(237, 237, 244, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 142, 60, 0.1);
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #EDEDF4;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(167, 169, 190, 0.3);
  border-radius: 5px;
  background-color: #0f0e17;
  color: #EDEDF4;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #FF8E3C;
  box-shadow: 0 0 0 3px rgba(255, 142, 60, 0.2);
  background-color: #0f0e17;
}

.required {
  color: #FF8E3C;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 0.95rem;
  line-height: 1.4;
}

button[type="submit"] {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}

/* ===== FAQ Section ===== */
.section-faq {
  background-color: #EDEDF4;
  color: #0F0E17;
}

.section-faq h2 {
  color: #0F0E17;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(15, 14, 23, 0.1);
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-question {
  display: block;
  padding: 20px;
  background-color: #FFFFFF;
  color: #0F0E17;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #FF8E3C;
  transition: all 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #FFFFFF;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: #A7A9BE;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 500px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question {
  background-color: #f8f8fc;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

/* ===== Contact Section ===== */
.section-contact {
  background-color: #0F0E17;
  padding: 100px 0;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 220px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  background-color: rgba(255, 142, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.address-icon::before,
.phone-icon::before,
.email-icon::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.address-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF8E3C'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.phone-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF8E3C'%3E%3Cpath d='M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.59l2.2-2.21c.28-.26.36-.65.25-1C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z'/%3E%3C/svg%3E");
}

.email-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF8E3C'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z'/%3E%3C/svg%3E");
}

.contact-text h3 {
  margin-bottom: 5px;
}

.contact-map {
  flex: 1;
  min-width: 220px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Footer ===== */
.site-footer {
  background-color: #0a0a12;
  padding: 70px 0 20px;
  color: #A7A9BE;
  border-top: 1px solid rgba(167, 169, 190, 0.1);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-description {
  max-width: 300px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #FF8E3C, transparent);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #A7A9BE;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FF8E3C;
  text-decoration: none;
}

.footer-contact p {
  margin-bottom: 10px;
  font-style: normal;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(167, 169, 190, 0.1);
  font-size: 0.9rem;
}

/* ===== Cookie Popup ===== */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FF8E3C;
  color: #0F0E17;
  padding: 15px 25px;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1000;
  max-width: 90%;
  width: 400px;
}

.cookie-popup p {
  margin-bottom: 0;
  font-size: 0.95rem;
  flex-grow: 1;
}

.btn-cookie {
  background-color: #0F0E17;
  color: #FFFFFF;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cookie:hover {
  background-color: #1a1926;
  transform: translateY(-2px);
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-bienvenue h1 {
    font-size: 3rem;
  }
  
  .tarif-card.featured {
    transform: scale(1.03);
  }
  
  .about-images::before {
    display: none;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .menu-icon {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(15, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: height 0.3s ease;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  
  .menu-toggle:checked ~ .nav-menu {
    height: calc(100vh - 70px);
    padding: 20px 0;
    overflow-y: auto;
  }
  
  .nav-menu li {
    margin: 15px 0;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .tarifs-grid, .editions-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .tarif-card {
    transform: none !important;
  }
  
  .tarif-card.featured {
    transform: none;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .footer-col {
    min-width: 100%;
  }
  
  .section-bienvenue {
    min-height: 500px;
  }
  
  .section-bienvenue h1 {
    font-size: 2.5rem;
  }
  
  .section-bienvenue .subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .section-bienvenue h1 {
    font-size: 2rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .cookie-popup {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
}



.btn-primary:hover {
  animation: pulse 2s infinite;
}

.site-header {
  animation: fadeInDown 0.5s ease-out;
}