/**
 * CSS Responsive - D'Jolies
 * Media queries et adaptations mobiles
 */

/* ============================================================================
   TABLETTES - Max 1024px
   ============================================================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-badge-bottom-left,
    .hero-badge-top-right {
        display: none;
    }

    /* Navigation */
    .nav-menu {
        gap: 20px;
    }

    /* Grids */
    .prestations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================================================
   MOBILE - Max 768px
   ============================================================================ */
@media (max-width: 768px) {
    /* Typographie */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    /* Topbar */
    .topbar {
        display: none;
    }

    /* Navigation */
    .navbar {
        padding: 15px 0;
        position: relative;
        z-index: 9999999;
    }

    .logo {
        font-size: 24px;
    }

    .logo i {
        font-size: 28px;
    }

    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 10000000;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        transition: transform 0.3s, opacity 0.3s, visibility 0s 0.3s;
        gap: 0;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        z-index: 9999998;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        transition: transform 0.3s, opacity 0.3s;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .btn-nav-cta {
        width: 100%;
        margin-top: 10px;
        padding: 15px 20px;
        text-align: center;
        display: block;
        font-size: 16px;
    }

    /* Hero */
    .hero {
        padding: 60px 0;
    }

    .hero::before {
        width: 400px;
        height: 400px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Prestations Grid */
    .prestations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Contact */
    .contact-form,
    .contact-info-card {
        padding: 25px;
    }

    /* Cards */
    .card-body {
        padding: 20px;
    }

    /* Footer */
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.125rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* ============================================================================
   PETIT MOBILE - Max 480px
   ============================================================================ */
@media (max-width: 480px) {
    /* Typographie */
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Logo */
    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

    /* Navbar */
    .navbar-content {
        gap: 10px;
    }

    .mobile-menu-toggle {
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
    }

    /* Prestation card */
    .prestation-card {
        padding: 20px;
    }

    .prestation-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .prestation-name {
        font-size: 1.125rem;
    }

    .prestation-price {
        font-size: 1.25rem;
    }

    /* Feature */
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    /* Contact */
    .contact-form,
    .contact-info-card {
        padding: 20px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Footer */
    .footer-social {
        justify-content: center;
    }

    /* Form */
    .form-input,
    .form-textarea,
    .form-select {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    /* Section Header */
    .section-header {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 12px;
    }
}

/* ============================================================================
   LANDSCAPE MOBILE
   ============================================================================ */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 40px 0;
    }

    .section {
        padding: 40px 0;
    }

    .cta-section {
        padding: 40px 0;
    }
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */
@media print {
    .topbar,
    .navbar,
    .site-footer,
    .mobile-menu-toggle,
    .btn,
    .cta-section,
    .hero-buttons {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    .hero,
    .section {
        padding: 20px 0;
    }

    .card,
    .prestation-card {
        border: 1px solid #ddd;
        box-shadow: none;
        page-break-inside: avoid;
    }
}

/* ============================================================================
   ANIMATIONS POUR MOBILE
   ============================================================================ */
@media (max-width: 768px) {
    /* Désactiver les animations lourdes sur mobile */
    .card:hover,
    .prestation-card:hover,
    .feature-item:hover .feature-icon {
        transform: none;
    }

    /* Mais garder les transitions de base */
    .card,
    .prestation-card,
    .feature-icon {
        transition: box-shadow 0.3s, border-color 0.3s;
    }
}

/* ============================================================================
   ACCESSIBILITÉ
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================================
   DARK MODE (optionnel)
   ============================================================================ */
@media (prefers-color-scheme: dark) {
    /* Si vous voulez supporter le dark mode, décommentez et adaptez :

    :root {
        --text-color: #f0f0f0;
        --text-light: #b0b0b0;
        --text-muted: #808080;
        --bg-white: #1a1a1a;
        --bg-light: #2a2a2a;
        --border-color: #3a3a3a;
    }

    .site-header {
        background: #1a1a1a;
    }

    .card {
        background: #2a2a2a;
    }
    */
}

/* ============================================================================
   UTILITIES RESPONSIVE
   ============================================================================ */

/* Visibility */
.hide-mobile {
    display: block;
}

.show-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }
}

/* Spacing responsive */
@media (max-width: 768px) {
    .mt-mobile-0 { margin-top: 0 !important; }
    .mt-mobile-1 { margin-top: 1rem !important; }
    .mt-mobile-2 { margin-top: 2rem !important; }

    .mb-mobile-0 { margin-bottom: 0 !important; }
    .mb-mobile-1 { margin-bottom: 1rem !important; }
    .mb-mobile-2 { margin-bottom: 2rem !important; }

    .py-mobile-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
    .py-mobile-1 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .py-mobile-2 { padding-top: 2rem !important; padding-bottom: 2rem !important; }

    .text-mobile-center { text-align: center !important; }
}

/* ============================================================================
   FIXES SPÉCIFIQUES
   ============================================================================ */

/* Fix pour iOS Safari */
@supports (-webkit-touch-callout: none) {
    .form-input,
    .form-textarea,
    .form-select,
    .btn {
        -webkit-appearance: none;
        appearance: none;
    }
}

/* Fix pour le sticky header sur iOS */
@supports (position: -webkit-sticky) or (position: sticky) {
    .site-header {
        position: -webkit-sticky;
        position: sticky;
    }
}

/* Éviter le zoom sur les inputs sur iOS */
@media screen and (max-width: 768px) {
    .form-input,
    .form-textarea,
    .form-select {
        font-size: 16px;
    }
}
