/* Mode PLEINE LARGEUR (quand booléen activé) */
.full-width-orange-banner {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, #ff7900 0%, #ff7900 100%);
  padding: 20px 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

/* Mode NORMAL (quand booléen désactivé) */
.orange-container {
  background: linear-gradient(135deg, #ff7900 0%, #ff7900 100%);
  border-radius: 0 0 20px 20px;
  padding: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem;
}

/* Section vidéo */
.video-section {
  position: relative;
  background: #000;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.full-width-orange-banner .video-section {
  margin: 0 20px;
}

.orange-container .video-section {
  margin: 0;
}

/* Section contenu */
.content-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 20px;
  color: white;
}

.full-width-orange-banner .content-section {
  padding: 40px 20px;
}

.orange-container .content-section {
  padding: 20px 0;
}

.main-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color: white;
}

.main-title .highlight {
  color: #000000;
  font-weight: 800;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.95);
}

.vote-button {
  background: white;
  color: var(--orange) !important;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
  text-decoration: none !important;
  display: inline-block;
}

.vote-button a,
.vote-button a:link,
.vote-button a:visited,
.vote-button a:hover,
.vote-button a:active {
  color: inherit !important;
  text-decoration: none !important;
}

.vote-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  color: var(--orange) !important;
}

/* Responsive Design */

/* Desktop (1200px+) */
@media (min-width: 1200px) {
  .full-width-orange-banner {
    padding: 20px 0;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .content-section {
    padding: 50px 30px;
  }
}

/* Tablette (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .main-title {
    font-size: 2rem;
  }

  .full-width-orange-banner {
    padding: 40px 0;
  }

  .content-section {
    padding: 30px 20px;
  }
}

/* Mobile (moins de 768px) */
@media (max-width: 767px) {
  .full-width-orange-banner,
  .orange-container {
    padding: 30px 15px;
  }

  .full-width-orange-banner {
    /* width: calc(100vw + 30px); */
  }

  .video-section {
    border-radius: 10px;
    margin: 0 0 20px 0;
  }

  .content-section {
    padding: 20px 10px;
    text-align: left;
  }

  .main-title {
    font-size: 1.6rem;
  }

  .description {
    font-size: 0.9rem;
  }

  .vote-button {
    align-self: flex-start;
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* Très petit mobile (moins de 576px) */
@media (max-width: 575px) {
  .main-title {
    font-size: 1.4rem;
  }

  .description {
    font-size: 0.85rem;
  }

  .content-section {
    padding: 15px 10px;
  }
}
