/* styles.css */
/* Réinitialisation de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Navigation fixe */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Informations de contact dans la navbar */
.navbar-contact {
    font-size: 0.9rem;
}

.navbar-contact a {
    color: #fff;
    text-decoration: none;
}

.navbar-contact a:hover {
    text-decoration: underline;
}

/* En-tête principal (hero) */
.hero-section {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') center/cover;
    text-align: center;
}

/* Page Header (pour les sous-pages) */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about-bg.jpg') center/cover;
    margin-top: 70px;
    text-align: center;
}

/* Icônes de services */
.service-icon i {
    transition: transform 0.3s ease;
}

.service-icon:hover i {
    transform: scale(1.1);
}

/* Cartes de services */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Offres */
.offer-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Footer violet (comme sur le site original) */
.footer-violet {
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
}

.footer-violet a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-violet a:hover {
    color: #fff;
    text-decoration: none;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Statistiques animées */
.counter {
    font-weight: 700;
    color: #fff;
}

/* Boutons */
.btn-primary {
    background: #4a00e0;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary:hover {
    background: #3a00b8;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid #4a00e0;
    color: #4a00e0;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #4a00e0;
    color: white;
    border-color: #4a00e0;
}

/* Animation des compteurs */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item h2 {
    animation: countUp 1.5s ease forwards;
}

/* Carte équipe */
.card {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card img {
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
}

/* Newsletter */
.input-group input {
    border-radius: 30px 0 0 30px;
    border: none;
    padding: 12px 20px;
}

.input-group button {
    border-radius: 0 30px 30px 0;
    background: #ffc107;
    border: none;
    font-weight: bold;
}

/* Alignement des badges */
.badge {
    font-size: 0.85em;
    font-weight: 600;
    padding: 0.5em 0.8em;
}

/* Fix pour la section "Pas d'offre" */
.card-body p {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-contact {
        display: none;
    }
    .hero-section,
    .page-header {
        padding: 100px 0 60px;
    }
}

/* =============== */
/* ✅ SÉLECTEUR DE LANGUE (comme starrytravel.fr) */
/* =============== */

/* Conteneur du dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.language-dropdown .dropdown-toggle::after {
    display: none; /* Supprime la flèche par défaut */
}

.language-dropdown .dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Menu déroulant */
.language-dropdown .dropdown-menu {
    min-width: 180px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0;
    padding: 0;
}

.language-dropdown .dropdown-item {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center;
    transition: background 0.2s ease;
}

.language-dropdown .dropdown-item:hover {
    background: #4a00e0;
    color: white;
}

.language-dropdown .dropdown-item:hover img {
    filter: brightness(0) invert(1);
}

.language-dropdown .dropdown-item img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-top: -2px;
    margin-right: 8px;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .language-dropdown {
        margin-top: 10px;
    }
    .language-dropdown .dropdown-menu {
        right: 0 !important;
        left: auto !important;
    }
}

/* =============== */
/* ✅ CORRECTION CHEVAUCHEMENT EN ALLEMAND */
/* =============== */

.navbar-nav {
    flex-wrap: wrap;
}

.navbar-nav .nav-link {
    white-space: nowrap;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    font-size: 0.95rem;
}