/* Camp de rentr�e des Ops - Styles sp�cifiques */

.section_faq.padding-section-large {
    margin-top: 0 !important;
}

/* Hero section - Remove bottom padding for seamless transition */
.section_hero.summer-hero {
    padding-bottom: 0 !important;
}

/* Section Success Stories */
.success-stories-section {
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed;
}

.success-stories-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.success-stories-header {
    margin-bottom: 3rem;
}

.success-stories-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.success-stories-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.success-stories-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #9062f0;
    font-size: 1rem;
}

/* Improvements Section */
.improvements-section {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.improvements-header {
    margin-bottom: 2rem;
}

.improvements-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

.improvements-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.improvement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fb;
    border-radius: 8px;
}

.improvement-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.improvement-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .success-stories-title {
        font-size: 1.875rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .improvements-section {
        padding: 1.5rem;
    }
    
    .improvements-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .improvement-item {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .success-stories-emoji {
        font-size: 2.5rem;
    }
    
    .success-stories-title {
        font-size: 1.625rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Section Témoignages Vidéo */
.testimonials-video-section {
    background: #fafbfc;
    border-top: 1px solid #e8eaed;
}

.testimonials-video-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-video-emoji {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.testimonials-video-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.2;
}

.testimonials-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-video-card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* Thumbnail container */
.testimonial-video-thumbnail {
    position: relative;
    width: 100%;
    background: #f8f9fb;
    padding: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.testimonial-video-thumbnail:hover {
    transform: scale(1.02);
}

.testimonial-thumbnail-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Video embed (hidden by default) */
.video-embed {
    position: relative;
    width: 100%;
    background: #f8f9fb;
    padding: 1rem;
}

.video-embed.hidden {
    display: none;
}

.video-embed iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 16px;
    background: #ffffff;
}

/* Close button for video */
.close-video-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    z-index: 10;
    transition: background 0.2s ease;
}

.close-video-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.testimonial-video-content {
    padding: 2rem;
}

.testimonial-video-quote {
    margin-bottom: 1.5rem;
}

.testimonial-video-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 500;
}

.testimonial-video-author {
    border-top: 1px solid #e8eaed;
    padding-top: 1.5rem;
    color: #666;
}

.testimonial-video-author strong {
    font-size: 1.125rem;
    color: #9062f0;
    font-weight: 700;
}

.testimonial-video-author span {
    font-size: 1rem;
    color: #777;
    font-weight: 500;
}

/* Responsive pour les témoignages vidéo */
@media (max-width: 1200px) {
    .testimonials-video-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-video-title {
        font-size: 2rem;
    }
    
    .testimonials-video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-thumbnail-image,
    .video-embed iframe {
        height: 350px;
    }
    
    .testimonial-video-content {
        padding: 1.5rem;
    }
    
    .testimonial-video-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-video-emoji {
        font-size: 2.5rem;
    }
    
    .testimonials-video-title {
        font-size: 1.75rem;
    }
    
    .testimonial-video-thumbnail,
    .video-embed {
        padding: 0.75rem;
    }
    
    .testimonial-thumbnail-image,
    .video-embed iframe {
        height: 300px;
        border-radius: 12px;
    }
    
    .testimonial-video-content {
        padding: 1.25rem;
    }
}

/* Bouton de scroll discret */
.scroll-discovery-cta {
    margin-top: 3rem;
    text-align: center;
}

.scroll-discovery-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    color: #666;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.scroll-discovery-button:hover {
    color: #9062f0;
    transform: translateY(-2px);
}

.scroll-discovery-button span {
    max-width: 400px;
    line-height: 1.5;
}

.scroll-discovery-button svg {
    opacity: 0.7;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-discovery-button:hover svg {
    opacity: 1;
    color: #9062f0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-4px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Responsive pour bouton scroll */
@media (max-width: 768px) {
    .scroll-discovery-cta {
        margin-top: 2rem;
    }
    
    .scroll-discovery-button {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    .scroll-discovery-button span {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .scroll-discovery-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .scroll-discovery-button span {
        max-width: 250px;
    }
}

/* Badge NEW pour les nouveautés du programme */
.schedule-new-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    padding: 0.2rem 0.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    animation: pulse-new 2s infinite;
}

@keyframes pulse-new {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
}

/* Responsive pour le badge NEW */
@media (max-width: 768px) {
    .schedule-new-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
        margin-left: 0.4rem;
    }
}

@media (max-width: 480px) {
    .schedule-new-badge {
        font-size: 0.6rem;
        padding: 0.1rem 0.35rem;
        margin-left: 0.3rem;
    }
}


/* Early Bird hint in hero */
.early-bird-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.early-bird-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.35);
}

.early-bird-hero-text {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.95rem;
}

.early-bird-hero-text.is-ghost {
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
  font-weight: 500;
}

@media (max-width: 767px) {
  .early-bird-hero-text {
    font-size: 0.9rem;
  }
  .early-bird-hero-badge {
    font-size: 0.65rem;
    padding: 0.18rem 0.5rem;
  }
}
