/* Global Styles */
html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Signika', sans-serif;
    background-color: #b3d9ff;
    color: #000000;
    text-align: center;
}


/* Page Layout */
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    padding: 2em;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    /*background-color: #e0f0ff; /* Couleur de fond de la page */
    color: #fff;
    padding: 1em 0;
    display: flex; /* Utiliser flexbox pour le layout */
    align-items: center; /* Alignement vertical centré */
}

header .logo {
    display: flex; /* Pour mettre le logo et le texte en ligne */
    align-items: center; /* Alignement vertical centré pour le logo et le titre */
    margin-left: 3em; /* Espace à gauche du logo */
}

header .logo img {
    height: 100px; /* Ajuste la hauteur du logo selon tes besoins */
    margin-right: 10px; /* Espace entre le logo et le titre */
}

header h1 {
    font-size: 2em; /* Ajuste la taille de la police du titre si nécessaire */
    margin: 0; /* Enlève les marges par défaut */
}

header nav {
    display: flex;
    justify-content: center; /* Centre la nav bar horizontalement */
    align-items: center;
    gap: 2em; /* Espace entre les éléments */
    margin: 0 auto; /* Centre la nav bar au milieu du header */
    flex-grow: 1; /* Permet à la nav de prendre tout l'espace restant */
}

header nav a {
    color: #fff; /* Couleur blanche pour matcher avec le bleu */
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    text-decoration: none; /* Pas de soulignement par défaut */
}

header nav a:hover {
    color: #ff9900; /* Couleur complémentaire au bleu pour le hover (orange) */
    text-decoration: none; /* Pas de soulignement au hover non plus */
}


/* Section Styles */
.section {
    margin: 2em 0;
    text-align: center;
}
h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}
.section h2 {
    font-size: 2em;
    margin-bottom: 1em;
}
.section p {
    font-size: 1.2em;
    line-height: 1.5;
}

/* Map Container Styles */
.map-container {
    width: 100%;
    height: 300px;
    margin-bottom: 2em;
}

/* Pricing Table Styles */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 2em; /* Espace entre les cartes */
    flex-wrap: wrap; /* Permet aux cartes de passer à la ligne */
}

.pricing-table .price-item {
    background-color: #fff;
    padding: 1em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: calc(40% - 1em); /* Ajuste la largeur pour 2 cartes par ligne */
}



.pricing-table .price-item h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #333;
}

.pricing-table .price-item p {
    font-size: 1.1em;
    color: #666;
}


/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

/* WhatsApp Link Styles */
.whatsapp-link {
    margin: 1em 0;
    font-size: 1.2em;
}
.whatsapp-link a {
    color: #25D366;
    text-decoration: none;
}
.whatsapp-link a:hover {
    text-decoration: underline;
}
.whatsapp-link img {
    width: 150px;
    height: 150px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Tips Page Styles */
.guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.guide-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.guide-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}
.guide-item h2 {
    font-size: 2em;
    margin-bottom: 15px;
}
.guide-item p {
    font-size: 1.2em;
    color: #555;
}

/* Styles pour les sections */
.section {
    margin: 50px 0;
}

.section h2, .section h3 {
    text-align: center;
    font-family: 'Arial', sans-serif;
    margin-bottom: 20px;
}

/* Style pour les cartes */
.symbol-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.symbol-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 180px; /* Taille de la carte */
    transition: transform 0.3s ease-in-out;
}

.symbol-item:hover {
    transform: translateY(-5px);
}

/* Style pour les images */
.symbol-item img {
    max-width: 100px;
    margin-bottom: 10px;
}

/* Style pour le texte des cartes */
.symbol-item p {
    font-family: 'Arial', sans-serif;
    color: #333;
    font-size: 14px;
    margin: 0;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 50px;
    font-family: 'Arial', sans-serif;
    color: #777;
}

/* Style des sections de cartes */
.symbol-group {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.symbol-group h3 {
    margin-bottom: 15px;
}


/* General mobile styles */
@media (max-width: 768px) {
    header nav {
        flex-direction: column;
        gap: 1em;
    }

    .container {
        padding: 1em;
    }

    h1 {
        font-size: 2em;
    }

    .pricing-table {
        flex-direction: column;
        align-items: center;
    }

    .pricing-table .price-item {
        width: 100%;
        margin-bottom: 1em;
    }
  
    .section {
        margin: 1em 0;
    }

    .contact-form, .map-container {
        width: 100%;
        margin: 0 auto;
    }
}

/* For very small screens, e.g., 480px */
@media (max-width: 480px) {
    header {
        padding: 0.5em 0;
    }

    h1 {
        font-size: 1.8em;
    }

    header nav a {
        font-size: 1em;
    }

    .section p {
        font-size: 1em;
    }
}
