/* Propulse Car - Custom Styles */

/* Variables CSS */
:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --border-radius: 0.375rem;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --transition: all 0.3s ease;
}

/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    padding-top: 76px;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    min-height: 76px;  /* Hauteur minimale fixe */
    overflow: visible;  /* Permet l'affichage des dropdowns */
    z-index: 1030;  /* Z-index élevé pour la navbar */
    position: relative;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    display: flex;
    align-items: flex-start;
    text-decoration: none;
}

.brand-logo {
    height: 180px;  /* Taille optimisée pour le logo */
    width: auto;
    object-fit: contain;
    margin: -60px 0;  /* Marge ajustée */
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Animation pulse pour le logo */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Media queries pour tablette */
@media (max-width: 768px) {
    .brand-logo {
        height: 100px;  /* Taille réduite pour tablette */
        margin: -30px 0;  /* Marge ajustée pour tablette */
    }
    
    .navbar {
        padding: 0.5rem 0;  /* Padding réduit sur tablette */
    }
    
    .navbar-brand {
        font-size: 1.2rem;  /* Taille de police réduite */
    }
}

/* Media queries pour mobile */
@media (max-width: 480px) {
    .brand-logo {
        height: 70px;  /* Taille optimisée pour mobile */
        margin: -15px 0;
    }
    
    .navbar {
        padding: 0.25rem 0;
    }
    
    body {
        padding-top: 60px;  /* Padding-top réduit pour compenser la navbar plus petite */
    }
    
    /* Amélioration du menu burger sur mobile */
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
        border: none;
    }
    
    .navbar-collapse {
        margin-top: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
}

/* Media queries pour très petit mobile (iPhone SE, etc.) */
@media (max-width: 375px) {
    .brand-logo {
        height: 60px;  /* Encore plus petit pour les petits écrans */
        margin: -10px 0;
    }
}

/* Correction spécifique pour Safari iOS */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    .brand-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Fix pour le viewport sur iPhone */
@media only screen and (max-device-width: 480px) {
    .navbar-brand {
        max-width: 70%;  /* Limite la largeur pour éviter les débordements */
    }
    
    .brand-logo {
        max-width: 100%;
        height: auto;
        max-height: 60px;  /* Hauteur maximale fixe pour iPhone */
        margin: -10px 0;  /* Marge réduite pour iPhone */
    }
    
    .navbar {
        min-height: 50px;  /* Hauteur minimale réduite pour iPhone */
    }
    
    body {
        padding-top: 50px;  /* Ajustement du padding pour iPhone */
    }
}

/* iPhone spécifique selon les modèles */
@media only screen and (max-width: 375px) {
    /* iPhone SE, iPhone 6/7/8 */
    .brand-logo {
        max-height: 50px;
        margin: -5px 0;
    }
    
    body {
        padding-top: 65px !important;  /* Augmenté pour éviter le recouvrement sur iPhone */
    }
}

@media only screen and (max-width: 320px) {
    /* iPhone 5/5S */
    .brand-logo {
        max-height: 45px;
        margin: -5px 0;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    body {
        padding-top: 60px !important;  /* Augmenté pour iPhone 5/5S */
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 30px;
}

.navbar-light {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-color);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Dropdown menu styles */
.dropdown-menu {
    z-index: 9999;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    background-color: white;
    min-width: 200px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
    background: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
}

.dropdown-divider {
    margin: 0.25rem 0;
    opacity: 0.2;
}

/* Navbar dropdown positioning */
.navbar .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: auto !important;
    right: 0 !important;
    transform: none !important;
    display: none;  /* Caché par défaut */
}

.navbar .dropdown-menu.show {
    display: block !important;
    z-index: 9999 !important;
}

/* Navigation dropdown item */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu.show {
    display: block;
    z-index: 9999;
}

/* Fixes pour les conflits z-index */
.hero-search,
.services-modern,
.stats-modern,
.vehicles-section-modern,
.cta-section-modern {
    position: relative;
    z-index: 1;
}

/* S'assurer que le contenu ne masque pas les dropdowns */
main {
    position: relative;
    z-index: 1;
}

/* Correction spécifique pour les éléments avec position fixed ou absolute */
.floating-cars,
.search-container {
    z-index: 2;
}

/* Navbar et dropdowns doivent être au-dessus de tout */
.navbar,
.navbar .dropdown-menu {
    z-index: 1030;
}

.dropdown-menu.show {
    z-index: 1031 !important;
}

/* Modal et overlay fixes */
.modal {
    z-index: 1050;
}

.modal-backdrop {
    z-index: 1040;
}

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border-width: 2px;
    padding: 0.5rem 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 123, 255, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 123, 255, 0.2);
}

/* Améliorations spécifiques pour Safari iOS */
@supports (-webkit-appearance: none) {
    input[type="email"],
    input[type="password"],
    input[type="text"] {
        -webkit-appearance: none;
        border-radius: 4px;
        font-size: 16px; /* Empêche le zoom automatique sur iPhone */
    }
}

/* Styles spécifiques pour les appareils iOS */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    input[type="email"],
    input[type="password"] {
        font-size: 16px !important;
        -webkit-text-size-adjust: 100%;
    }
}

/* Styles pour les champs de saisie avec focus amélioré */
.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    -webkit-tap-highlight-color: transparent;
}

/* Corrections spécifiques pour Safari/iPhone */
@supports (-webkit-appearance: none) {
    /* Détection Safari/WebKit */
    @media only screen and (max-width: 768px) {
        body {
            padding-top: 70px !important;  /* Correction spécifique Safari mobile */
        }
        
        /* Assurer que les contenus admin ne soient pas recouverts */
        .container-fluid {
            margin-top: 10px;
        }
        
        /* Correction pour les boutons en haut des pages admin */
        .row.mb-4 .d-flex {
            margin-top: 10px;
        }
    }
    
    @media only screen and (max-width: 375px) {
        body {
            padding-top: 75px !important;  /* Plus d'espace pour les petits iPhone */
        }
    }
    
    @media only screen and (max-width: 320px) {
        body {
            padding-top: 70px !important;  /* Ajustement pour iPhone 5/5S */
        }
    }
}

/* Correction pour l'affichage des boutons dans les pages admin */
.admin-header-buttons {
    margin-top: 15px;
}

@media only screen and (max-width: 768px) {
    .admin-header-buttons {
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    /* Assurer que les éléments ne soient pas coupés */
    .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    
    .d-flex.justify-content-between > div:last-child {
        align-self: flex-end;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        gap: 10px;
    }
}

/* Rest of your existing CSS... */