/* Reset et Polices */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    -webkit-user-select: none; /* Chrome, Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standard */
}

:root {
    --primary: #105eb1;
    --secondary: #f9c922;
    --dark: #1a1a2e;
    --light: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fas {
	padding-right:5px;
}
/* réseaux sociaux */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}
.social-icon:hover {
    transform: scale(1.1);
}
.social-icon img {
    width: 20px;
    height: 20px;
}



/* Boutons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom {
    background-color: #f03749;
    color: white;
    border: 2px solid #f03749;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #d62f3f; /* Version légèrement plus foncée */
    box-shadow: 0 4px 8px rgba(240, 55, 73, 0.3);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: #1e4bbb;
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: #e6b412;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
  display: inline-block;
  height: 70px; /* Ajustez selon la hauteur de votre logo */
}

.logo-img {
  height: 100%;
  width: auto;
  transition: opacity 0.3s ease;
}

.logo-img:hover {
  opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
	font-size: 16px;
}

.download-buttons {
	padding-left: 15px;
    display: flex;
    gap: 15px;
}

.app-store-btn, .google-play-btn {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 10px;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-store-btn {
    background: #000;
    color: #fff;
}

.google-play-btn {
    background: #4285F4;
    color: #fff;
}

.app-store-btn i, .google-play-btn i {
    font-size: 22px;
    margin-right: 8px;
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 0, 0, 0.4), rgba(20, 0, 0, 0.7)), url('../images/hero-bg.jpg') no-repeat center/cover;
    height: 450px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 50px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Features */
.features {
    padding: 30px 0;
    background-color: var(--light);
}

.features-title {
	padding-top: 20px;
	background-color: var(--light);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Testimonial */
.testimonial {
    padding: 30px;
    background-color: var(--primary);
    color: white;
    text-align: justify;
}

.testimonial blockquote {
    font-size: 1rem;
    font-style: italic;
	padding:20px;
}

.footerElem {
    font-weight: 600;
	border-radius: 10px;
	padding: 20px;
	background-color: var(--dark);
}

.testimonial p {
	font-size: 0.8rem;
    font-weight: 400;
}


.bloctext {
	padding: 30px;
    background-color: var(--primary);
    color: white;
    text-align: justify;
	border-radius: 10px;
	margin-bottom: 20px;
}

/* Nouveaux styles pour les images */
.city-image {
    width: 100%;
    height: 300px; /* Hauteur fixe pour uniformité */
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.feature-city {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-city i {
    font-size: 1.2rem;
    color: #f03749;
    margin-bottom: 0px;
}
.feature-city h3 {
    font-size: 1.2rem;
    margin-bottom: 0px;
}

.feature-city:hover {
    transform: translateY(-10px);
}

.feature-city:hover .city-image img {
    transform: scale(1.05);
}

/* Carte cliquable */
.city-card {
    display: block;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .city-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .features .container {
        grid-template-columns: 1fr;
    }
    
    .city-image {
        height: 220px;
    }
}

.container h2,
.content-stats h2, 
.content-categories h2,
.content-examples h2 {
    text-align: center;
	margin-top: 10px;
	padding-bottom: 10px;
    font-size: 2rem;
    color: var(--primary);
}

/* Footer */
footer {
	background-color: var(--primary);
    color: white;
    padding: 50px 0 20px;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo a {
    color: white;
    font-size: 1.5rem;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        font-size: 0.7rem;
    }
}

/* ===== MENU BURGER ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* État ouvert du menu */
.menu-toggle.open .hamburger {
    background-color: transparent;
}

.menu-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Navigation principale */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    position: relative;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* Style au survol */
.main-nav ul li a:hover {
    color: var(--primary);
}

/* Style pour l'élément actif */
.main-nav ul li a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Animation soulignée pour l'élément actif */
.main-nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f03749; /* Rouge Mister Places */
    transform: scaleX(1);
    transform-origin: bottom center;
    transition: transform 0.3s ease;
}


/* SEO Teaser */
#seo-teaser {
    width: 100%;
    max-width: 1200px;
    padding: 2rem 1rem;
    margin: 0 auto;
}
.teaser-item {
    position: relative;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    text-align: center;
}
.teaser-item:last-child {
    margin-bottom: 0;
}
/* Ruban News en diagonale */
.ribbon {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}
.ribbon span {
    position: absolute;
    display: block;
    width: 140px;
    padding: 1px 0;
    background: var(--primary);
    color: #fff;
    font-weight: bold;
    font-size: 0.65rem;
    text-transform: uppercase;
    text-align: center;
    text-justify: auto;
    transform: rotate(-45deg);
    top: 10px;
    left: -50px;
    z-index: 2;
}
.categories {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color:#fff;
}
.categories .category {
    display: inline-block;
    background: #f0f0f0;
    border-radius: 0.5rem;
    padding: 0.25rem 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    color: #fff; /* Texte blanc */
    cursor: pointer; /* Curseur en forme de main */
    text-decoration: none;
}

.teaser-title {
    font-size: 1.0rem;
    margin: 0 0 1rem 0;
    color: #333;
    font-weight: normal;
    font-style: italic;
}
.keywords {
    margin-bottom: 1.5rem;
}
.keyword-bubble {
    display: inline-block;
    background: #e0e0e0;
    color: #333;
    border-radius: 999px;
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    height: 30px;
}
.btn-primary-teaser {
    display: inline-block;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    background: #007BFF;
    color: #fff;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-primary-teaser:hover {
    background: #0056b3;
}
@media (max-width: 600px) {
    .teaser-title {
        font-size: 0.8rem;
    }
    .teaser-item {
        padding: 1.5rem;
    }
}



/* Pour le menu mobile */
@media (max-width: 1024px) {
    .main-nav ul li a.active {
        background-color: rgba(240, 55, 73, 0.1);
        padding: 8px 15px;
        border-radius: 5px;
    }
}

.nav-cta {
    margin-left: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .main-nav ul li {
        margin: 15px 0;
        text-align: center;
    }
    
    .nav-cta {
        margin: 30px 0 0;
        width: 80%;
        text-align: center;
    }
    
    /* Ajustement du hero pour le header fixe */
    .hero {
        padding-top: 90px;
    }
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}
