/* Fix pour le desktop - s'assurer que les styles desktop sont préservés */
@media (min-width: 769px) {
    /* Header desktop normal */
    .header {
        position: fixed;
        top: -100px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        z-index: 1000;
        transition: all 0.3s ease;
        padding: 1rem 0;
        opacity: 0;
        visibility: hidden;
    }
    
    .header.scrolled {
        top: 0;
        opacity: 1;
        visibility: visible;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .header-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Menu desktop visible */
    .nav-menu {
        display: flex !important;
        gap: 2rem;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: #6B46C1;
    }
    
    /* Boutons desktop visibles */
    .header-buttons {
        display: flex !important;
        gap: 1rem;
    }
    
    /* Logo desktop */
    .header .logo {
        height: 50px;
    }
    
    /* Cacher les éléments mobiles sur desktop */
    .hamburger-menu,
    .favorite-icon,
    .mobile-menu-overlay {
        display: none !important;
    }
    
    /* Fix pour le bouton CTA desktop */
    .cta-button {
        animation: pulse 2s infinite !important;
        position: relative !important;
    }
    
    .cta-button:hover {
        transform: none !important;
        background: #5936A8 !important;
    }
}

/* S'assurer que le menu scrollé fonctionne */
@media (min-width: 769px) {
    .header.scrolled .nav-menu {
        display: flex !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

/* Bloc map plus grand sur desktop */
@media (min-width: 769px) {
    .paris-view {
        flex: 1.5 !important;
        min-width: 60% !important;
    }
    
    .mobile-device {
        flex: 0.5 !important;
        max-width: 35% !important;
    }
}

/* Agrandir l'image du téléphone dans le bloc mobile */
.app-content img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto 20px !important;
    display: block !important;
}

/* Sur desktop, ajuster la taille du device-frame */
@media (min-width: 769px) {
    .device-frame {
        transform: scale(1.1);
        transform-origin: center;
    }
    
    .device-screen {
        padding: 0 !important;
    }
}
