/* Media queries pour mobile */
@media (max-width: 768px) {
    .mobile-info-text {
        display: block;
    }
    
    .tooltip {
        display: none;
    }
    
    .desktop-price-panel {
        display: none;
    }
    
    /* Espace en bas pour la barre de configuration mobile */
    body {
        padding-bottom: 100px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        flex: none;
    }
}

/* Media queries pour desktop */
@media (min-width: 768px) {
    /* Séparateurs longs sur desktop */
    .separator-1 {
        background-image: url('../assets/images/trait long 1.png');
    }

    .separator-2 {
        background-image: url('../assets/images/trait long 2.png');
    }

    .separator-3 {
        background-image: url('../assets/images/trait long 3.png');
    }
    
    /* Hero section desktop */
    .hero-section {
        height: auto;
        min-height: 50vh;
        padding: 40px 0;
        flex-direction: row;
        position: relative;
    }

    .hero-photo {
        width: 50%;
        height: calc(100% - 40px);
        position: absolute;
        top: 40px;
        left: 0;
        bottom: 0;
        z-index: 1;
    }

    .hero-content {
        width: 50%;
        height: auto;
        min-height: calc(100% - 110px);
        background-color: transparent;
        backdrop-filter: none;
        padding: 60px 40px;
        margin: 20px 0 90px 50%;
        position: relative;
        z-index: 2;
        flex-direction: column;
        justify-content: center;
    }

    .hero-title-mobile {
        display: none;
    }

    .hero-title-desktop {
        display: block;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-top: 20px;
    }

    .mobile-vertical-separator {
        display: none;
    }

    .menu-section {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .desktop-nav {
        display: block;
        background-color: rgba(46, 46, 46, 0.9);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 3;
    }

    .vertical-separator {
        position: absolute;
        left: 50%;
        top: 20px;
        bottom: 90px;
        transform: translateX(-50%);
        background-image: url('../assets/images/trait vertical.png');
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: center;
        width: 80px;
        z-index: 5;
    }
    
    /* Sections desktop */
    .section {
        padding: 20px 40px;
    }

    .section h2 {
        font-size: 2.2rem;
    }
    
    .section-main-text {
        margin-bottom: 30px;
        color: var(--color-text);
    }
    
    .section-detail-text {
        display: block;
        font-size: 1rem;
        line-height: 1.7;
        max-width: 700px;
        margin: 0 auto 30px;
        color: var(--color-text);
        padding: 0;
        font-weight: 400;
    }
    
    /* Accordéons cachés sur desktop */
    .accordion-toggle {
        display: none;
    }
    
    .accordion-content {
        max-height: none;
        overflow: visible;
    }
    
    /* Calculateur de tarifs desktop */
    .tarif-calculator {
        max-width: none;
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 40px;
        align-items: stretch;
    }

    .tarif-options {
        padding-right: 20px;
    }

    .desktop-price-panel {
        display: flex;
        position: sticky;
        top: 20px;
    }

    .price-bar {
        display: none;
    }
}

@media (min-width: 769px) {
    .tarif-calculator {
        max-width: none;
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 40px;
        align-items: stretch;
    }

    .tarif-options {
        padding-right: 20px;
    }

    .desktop-price-panel {
        display: flex;
        position: sticky;
        top: 20px;
    }

    .price-bar {
        display: none;
    }
}