/* Responsive CSS pour TUNNEL-SIMPLE */

/* Styles pour le menu hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Augmenté pour être sûr qu'il soit au-dessus des autres éléments */
    position: relative;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #FFD700;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
    display: block;
    margin: 3px 0;
}

/* Media Queries pour les différentes tailles d'écran */
@media (max-width: 1200px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .headline {
        font-size: 36px;
    }
    
    .secondary-headline {
        font-size: 28px;
    }
    
    .small-text {
        font-size: 18px;
    }
    
    .sub-headline {
        font-size: 18px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Menu responsive */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        right: 0;
        left: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        background-color: #000;
        z-index: 999;
        box-shadow: none;
        padding: 0;
        margin: 0;
        width: 100%;
        display: block;
    }
    
    .main-nav.active {
        max-height: 500px; /* Hauteur augmentée pour s'assurer que tout le menu est visible */
        box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 10px;
        gap: 0;
        margin: 0;
        list-style: none;
        width: 100%;
    }
    
    .main-nav ul li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 12px;
        width: 100%;
        color: #FFD700;
        font-weight: 600;
        text-decoration: none;
        transition: background-color 0.3s;
    }
    
    .main-nav a:hover {
        background-color: rgba(255, 215, 0, 0.1);
    }
    
    .site-header .container {
        position: relative;
    }
    
    /* Autres éléments responsive */
    .hero-section {
        padding: 40px 0;
    }
    
    .headline {
        font-size: 30px;
    }
    
    .secondary-headline {
        font-size: 24px;
    }
    
    .small-text {
        font-size: 16px;
    }
    
    .sub-headline {
        font-size: 16px;
    }
    
    .attention-card {
        margin: 30px 10px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-section {
        padding: 60px 0 40px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .bonus-section .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .bonus-section .section-title {
        font-size: 26px;
        padding: 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        line-height: 1.3;
    }
    
    .bonus-headline {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .bonus-list {
        grid-template-columns: 1fr 1fr;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo, .footer-nav, .footer-contact {
        width: 100%;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .input-container {
        width: 100%;
    }
    
    .form-button {
        width: 100%;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .headline {
        font-size: 24px;
    }
    
    .secondary-headline {
        font-size: 20px;
    }
    
    .small-text {
        font-size: 14px;
    }
    
    .sub-headline {
        font-size: 14px;
    }
    
    .attention-header h3 {
        font-size: 18px;
    }
    
    .pain-points li {
        font-size: 14px;
    }
    
    .solution-text {
        font-size: 16px;
    }
    
    .bonus-section .section-title {
        font-size: 22px;
        padding: 0 25px;
        width: 100%;
        text-align: center;
    }
    
    .bonus-section .section-title:before,
    .bonus-section .section-title:after {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .bonus-headline {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .bonus-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0 auto 20px auto;
        padding: 0;
        width: 100%;
        align-items: center;
        box-sizing: border-box;
    }
    
    .bonus-item {
        padding: 20px 15px;
        width: 85%;
        margin: 0 auto;
        max-width: 320px;
        display: block;
        box-sizing: border-box;
    }
    
    .bonus-item h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .bonus-item .price {
        font-size: 15px;
    }
    
    .bonus-item .description {
        font-size: 14px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-container {
        flex-direction: column;
        align-items: center;
    }
    
    .tagline {
        margin-top: 10px;
        margin-left: 0 !important;
        text-align: center;
    }
}
