/* Masquer la barre Google Translate */
.goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0 !important; /* Évite le décalage causé par la barre masquée */
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 70px; /* Ajouter un espace en haut pour la barre de navigation */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #2c3e50;
}

/* Navigation Bar */
.navbar {
    background-color: #2c3e50 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    border-radius: 50%;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #D147A3 !important; /* Violet rosé */
}

/* Hero Section */
.hero-section {
    background-color: transparent;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #2c3e50;
}

.hero-section h1 {
    font-size: 3rem;
    animation: slideIn 1.5s ease-in-out;
    word-wrap: break-word;
}

.hero-section p {
    font-size: 1.5rem;
    animation: slideIn 2s ease-in-out;
}

.hero-section .btn {
    font-size: 1.2rem;
    padding: 10px 30px;
    background-color: #D147A3;
    border: none;
    animation: fadeIn 2.5s ease-in-out;
}

.hero-section .btn:hover {
    background-color: #B03A8A;
}

/* Key Points Section */
.key-points .card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}

.key-points .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.key-points .card-title {
    color: #2c3e50;
}

.key-points .card-text {
    color: #666;
}

/* Program Section */
.program-section {
    background-color: #fff;
}

.program-section .list-group-item {
    border: none;
    padding: 15px 0;
    font-size: 1.1rem;
    color: #333;
    background-color: transparent;
}

.program-section .list-group-item:hover {
    background-color: #f8f9fa;
    color: #D147A3;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Compte à rebours */
.countdown {
    font-size: 1.2rem;
    color: #2c3e50;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

/* Galerie */
.gallery-section {
    padding: 50px 0;
}

.gallery-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Partner Logos */
.partner-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .hero-section .btn {
        font-size: 1rem;
        padding: 8px 20px;
    }
    .countdown {
        font-size: 1rem;
    }
}

/* Translate Widget */
.translate-widget {
    font-size: 0.8rem; /* Plus petit pour plus de subtilité */
    padding: 0; /* Supprime l'espacement inutile */
}

.translate-widget select {
    background-color: #2c3e50; /* Fond assorti à la navbar */
    color: #fff; /* Texte blanc */
    border: 1px solid #D147A3; /* Bordure violet rosé */
    border-radius: 3px; /* Coins légèrement arrondis */
    padding: 1px 3px; /* Réduit la taille interne */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem; /* Taille encore plus petite */
    cursor: pointer;
}

.translate-widget select:hover {
    background-color: #D147A3; /* Violet rosé au survol */
    color: #fff;
}