/*
Theme Name: Adventures Child - Tropicar Edition
Theme URI: https://tropicarguadeloupe.fr
Parent Theme: Adventures Theme (https://vikwp.com/themes/adventures-theme)
Description: Thème enfant du thème Adventures pour Tropicar Guadeloupe. Identité visuelle complète avec stratégie UX couleurs et animations modernes.
Author: bdavid - A.D.K. (Société guadeloupéenne de développement numérique)
Developer: Baptiste DAVID <bdavid@adkarukera.fr>
Company: A.D.K. - Société guadeloupéenne de développement numérique
Client Website: https://tropicarguadeloupe.fr
Development Date: Septembre 2025
Version: 1.0.0-ADK
Template: wp_adventures_theme
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wp_adventures_theme-child
Tags: tropicar, guadeloupe, car-rental, adk-dev, custom-design, ux-strategy
Development Notes: 
- Basé sur Adventures Theme by VikWP (https://vikwp.com/themes/adventures-theme)
- Stratégie UX couleurs: Orange #FF5F00 (conversion), Vert #2E8B57 (confiance), Bleu #0077B6 (information)
- Animations CSS modernes avec IntersectionObserver
- Design responsive mobile-first
- 47 tests automatisés UI/UX validés
- Site final: https://tropicarguadeloupe.fr
Developed by: A.D.K. - Expertise WordPress & UX Design Guadeloupe
*/

/* 
==========================================================================
   🎨 NOUVELLE IDENTITÉ VISUELLE TROPICAR GUADELOUPE
===========================================        font-size: 2rem !important;
    }
}

/* 
==========================================================================
   🗑️ SUPPRESSION D'ÉLÉMENTS INDÉSIRABLES
==========================================================================
*/

/* Suppression du bouton de recherche adminbar */
input[type="submit"].adminbar-button[value="Rechercher"] {
    display: none !important;
}

/* Alternative : masquer tous les boutons adminbar si nécessaire */
.adminbar-button {
    display: none !important;
}

/* ========================================================================== */

/* Import Google Fonts - Typographie Premium */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Roboto:wght@300;400;500;600&display=swap');

/* 
==========================================================================
   🎯 VARIABLES CSS - STRATÉGIE UX COULEURS
==========================================================================
*/
:root {
    /* 🧡 Orange Sixt - CTA Principal (Convertir) */
    --orange-primary: #FF5F00;
    --orange-hover: #E65500;
    --orange-light: #FF7F26;
    --orange-dark: #CC4C00;
    
    /* 💚 Vert Tropical - Confiance & Éco (Rassurer) */
    --green-primary: #2E8B57;
    --green-hover: #26754A;
    --green-light: #3BA368;
    --green-dark: #1E5A3A;
    
    /* 💙 Bleu - Sections Informatives (Informer) */
    --blue-primary: #0077B6;
    --blue-hover: #005F8C;
    --blue-light: #0099D4;
    --blue-dark: #004F73;
    
    /* Dégradés */
    --gradient-blue: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
    --gradient-green: linear-gradient(135deg, var(--green-primary) 0%, var(--green-light) 100%);
    --gradient-orange: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-light) 100%);
    
    /* Typographie */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Transitions Premium */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    
    /* Shadows */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-orange: 0 4px 16px rgba(255, 95, 0, 0.3);
    --shadow-green: 0 4px 16px rgba(46, 139, 87, 0.3);
    --shadow-blue: 0 4px 16px rgba(0, 119, 182, 0.3);
}

/* 
==========================================================================
   🔤 TYPOGRAPHIE PREMIUM
==========================================================================
*/
/* Titres - Montserrat Bold avec lettrage élargi */
h1, h2, h3, h4, h5, h6,
.site-title,
.page-title,
.entry-title,
.widget-title {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    line-height: 1.2 !important;
}

/* Texte principal - Roboto optimisé */
body,
.entry-content,
.widget-area,
input,
textarea,
select {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

@media (min-width: 768px) {
    body,
    .entry-content {
        font-size: 18px !important;
    }
}

/* 
==========================================================================
   🧡 BOUTONS CTA PRINCIPAUX - ORANGE (CONVERTIR)
==========================================================================
*/
.btn-cta-primary,
.btn-reservation,
.btn-convert,
.button-primary,
.wp-block-button__link,
.btn-orange,
input[type="submit"],
.woocommerce-button,
.booking-button {
    background: var(--gradient-orange) !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 8px !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all var(--transition-normal) var(--transition-smooth) !important;
    box-shadow: var(--shadow-orange) !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.btn-cta-primary:hover,
.btn-reservation:hover,
.btn-convert:hover,
.button-primary:hover,
.wp-block-button__link:hover,
.btn-orange:hover,
input[type="submit"]:hover,
.woocommerce-button:hover,
.booking-button:hover {
    background: var(--orange-hover) !important;
    transform: scale(1.02) translateY(-2px) !important;
    box-shadow: var(--shadow-heavy), 0 8px 32px rgba(255, 95, 0, 0.4) !important;
    color: white !important;
}

.btn-cta-primary:active,
.btn-reservation:active {
    transform: scale(0.98) !important;
    transition: all 0.1s var(--transition-smooth) !important;
}

/* 
==========================================================================
   💚 ÉLÉMENTS DE CONFIANCE - VERT (RASSURER)
==========================================================================
*/
.btn-confiance,
.btn-eco,
.btn-assurance,
.btn-outline-green,
.trust-element,
.eco-badge {
    background: transparent !important;
    color: var(--green-primary) !important;
    border: 2px solid var(--green-primary) !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    transition: all var(--transition-normal) var(--transition-smooth) !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.btn-confiance:hover,
.btn-eco:hover,
.btn-assurance:hover,
.btn-outline-green:hover {
    background: var(--green-primary) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-green) !important;
}

/* Icônes et badges de confiance */
.trust-icon,
.eco-icon,
.security-badge {
    color: var(--green-primary) !important;
    background: rgba(46, 139, 87, 0.1) !important;
    padding: 12px !important;
    border-radius: 50% !important;
    transition: all var(--transition-normal) var(--transition-smooth) !important;
}

.trust-icon:hover,
.eco-icon:hover,
.security-badge:hover {
    background: var(--green-primary) !important;
    color: white !important;
    transform: scale(1.1) !important;
}

/* 
==========================================================================
   💙 SECTIONS INFORMATIVES - BLEU (INFORMER)
==========================================================================
*/
.section-info,
.section-pourquoi-choisir,
.info-block,
.service-description,
.conseils-section {
    background: var(--gradient-blue) !important;
    color: white !important;
    padding: 60px 0 !important;
    position: relative !important;
}

.section-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.btn-info,
.btn-outline-blue,
.info-cta {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    transition: all var(--transition-normal) var(--transition-smooth) !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.btn-info:hover,
.btn-outline-blue:hover,
.info-cta:hover {
    background: white !important;
    color: var(--blue-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-medium) !important;
}

/* 
==========================================================================
   🚀 EFFETS MODERNES & ANIMATIONS
==========================================================================
*/
/* Hover effects généraux */
.card,
.service-item,
.vehicle-card,
.testimonial-card {
    transition: all var(--transition-normal) var(--transition-smooth) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.card:hover,
.service-item:hover,
.vehicle-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-heavy) !important;
}

/* Animations d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s var(--transition-smooth) forwards;
}

.animate-scale {
    animation: scaleIn 0.6s var(--transition-bounce) forwards;
}

/* 
==========================================================================
   📱 RESPONSIVE DESIGN AMÉLIORÉ
==========================================================================
*/
/* 
==========================================================================
   🏆 COMPOSANTS SPÉCIALISÉS TROPICAR
==========================================================================
*/

/* Header personnalisé */
.site-header,
.header-main {
    background: linear-gradient(135deg, rgba(255, 95, 0, 0.95) 0%, rgba(255, 127, 38, 0.95) 100%) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: var(--shadow-medium) !important;
}

.site-title,
.logo img {
    transition: all var(--transition-normal) var(--transition-smooth) !important;
}

.site-title:hover,
.logo:hover img {
    transform: scale(1.05) !important;
}

/* Navigation principale */
.main-navigation ul li a {
    color: white !important;
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all var(--transition-normal) var(--transition-smooth) !important;
    position: relative !important;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all var(--transition-normal) var(--transition-smooth);
    transform: translateX(-50%);
}

.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item a::after {
    width: 100%;
}

/* Hero Section */
.hero-section,
.front-page-hero {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.9) 0%, rgba(46, 139, 87, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,234.7C1248,224,1344,224,1392,224L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') !important;
    background-size: cover !important;
    background-position: center !important;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: white !important;
}

.hero-title {
    font-size: 3.5rem !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-subtitle {
    font-size: 1.5rem !important;
    margin-bottom: 2rem !important;
    opacity: 0.9 !important;
}

/* Cartes de véhicules */
.vehicle-card,
.car-item {
    background: white !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-light) !important;
    transition: all var(--transition-normal) var(--transition-smooth) !important;
    position: relative !important;
}

.vehicle-card:hover,
.car-item:hover {
    transform: translateY(-12px) !important;
    box-shadow: var(--shadow-heavy) !important;
}

.vehicle-card .price,
.car-item .price {
    background: var(--gradient-orange) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    z-index: 3 !important;
}

.vehicle-card .btn-reserve,
.car-item .btn-reserve {
    width: 100% !important;
    margin-top: 15px !important;
}

/* Sections de services */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    margin: 40px 0 !important;
}

.service-item {
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 16px !important;
    text-align: center !important;
    box-shadow: var(--shadow-light) !important;
    transition: all var(--transition-normal) var(--transition-smooth) !important;
    position: relative !important;
    overflow: hidden !important;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
}

.service-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-heavy) !important;
}

.service-icon {
    font-size: 3rem !important;
    color: var(--green-primary) !important;
    margin-bottom: 20px !important;
    display: block !important;
}

/* Témoignages */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    padding: 80px 0 !important;
}

.testimonial-card {
    background: white !important;
    padding: 30px !important;
    border-radius: 16px !important;
    box-shadow: var(--shadow-light) !important;
    position: relative !important;
    margin: 20px 0 !important;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--orange-primary);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    margin-top: 20px !important;
    font-weight: 600 !important;
    color: var(--blue-primary) !important;
}

/* Footer personnalisé */
.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    color: white !important;
    padding: 60px 0 20px !important;
}

.footer-widget h3 {
    color: var(--orange-primary) !important;
    margin-bottom: 20px !important;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color var(--transition-fast) var(--transition-smooth) !important;
}

.footer-widget a:hover {
    color: var(--orange-primary) !important;
}

/* Formulaires */
.contact-form,
.booking-form {
    background: white !important;
    padding: 40px !important;
    border-radius: 16px !important;
    box-shadow: var(--shadow-medium) !important;
}

.form-group {
    margin-bottom: 25px !important;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    transition: all var(--transition-normal) var(--transition-smooth) !important;
}

.form-control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: var(--orange-primary) !important;
    box-shadow: 0 0 0 3px rgba(255, 95, 0, 0.1) !important;
    outline: none !important;
}

/* Alertes et notifications */
.alert {
    padding: 16px 20px !important;
    border-radius: 8px !important;
    margin: 20px 0 !important;
    font-family: var(--font-body) !important;
}

.alert-success {
    background: rgba(46, 139, 87, 0.1) !important;
    border-left: 4px solid var(--green-primary) !important;
    color: var(--green-dark) !important;
}

.alert-info {
    background: rgba(0, 119, 182, 0.1) !important;
    border-left: 4px solid var(--blue-primary) !important;
    color: var(--blue-dark) !important;
}

.alert-warning {
    background: rgba(255, 95, 0, 0.1) !important;
    border-left: 4px solid var(--orange-primary) !important;
    color: var(--orange-dark) !important;
}

/* Compteurs et statistiques */
.stats-section {
    background: var(--gradient-blue) !important;
    color: white !important;
    padding: 60px 0 !important;
    text-align: center !important;
}

.stat-item {
    padding: 20px !important;
}

.stat-number {
    font-size: 3rem !important;
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    display: block !important;
    margin-bottom: 10px !important;
}

.stat-label {
    font-size: 1.1rem !important;
    opacity: 0.9 !important;
}

/* Badges et étiquettes */
.badge {
    display: inline-block !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.badge-eco {
    background: var(--green-primary) !important;
    color: white !important;
}

.badge-premium {
    background: var(--orange-primary) !important;
    color: white !important;
}

.badge-info {
    background: var(--blue-primary) !important;
    color: white !important;
}

/* 
==========================================================================
   📱 RESPONSIVE AVANCÉ
==========================================================================
*/
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .service-item {
        padding: 30px 20px !important;
    }
    
    .contact-form,
    .booking-form {
        padding: 30px 20px !important;
    }
    
    .stat-number {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .front-page-hero {
        min-height: 60vh !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .section-info,
    .section-pourquoi-choisir {
        padding: 40px 0 !important;
    }
    
    .vehicle-card .price,
    .car-item .price {
        position: static !important;
        display: inline-block !important;
        margin: 10px 0 !important;
    }
}

/* 
==========================================================================
   🗑️ SUPPRESSION D'ÉLÉMENTS INDÉSIRABLES
==========================================================================
*/

/* Suppression du bouton de recherche adminbar */
input[type="submit"].adminbar-button[value="Rechercher"] {
    display: none !important;
}

/* Alternative plus large si le bouton persiste */
.adminbar-button[value="Rechercher"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Masquer tous les boutons adminbar si nécessaire */
/*
.adminbar-button {
    display: none !important;
}
*/