/* Variables */
:root {
    --primary-blue: #f31830;
    --text-dark: #333;
    --red-accent: #DC3545;
}

/* Logo */
.logo {
    height: 130px;
    width: auto;
}

/* Hero image */
.hero-image img {
    height: 400px;
    object-fit: cover;
}

/* Titre principal */
.main-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--text-dark);
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* Texte de contenu */
.content-text {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
    color: var(--text-dark);
}

/* Section galerie */
.gallery-section {
    background-color: #f8f9fa;
}

.gallery-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Section pays avec fond bleu */
.countries-section {
    /*background-color: var(--primary-blue) !important;*/
	background:linear-gradient(to bottom, var(--primary-blue) 0%, var(--primary-blue) 25%, white 25%, white 100%);
}

.countries-title {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Items pays */
.country-item {
    transition: transform 0.3s ease;
}

.country-item:hover {
    transform: translateY(-5px);
}

.flag-container {
    margin-bottom: 15px;
}

.flag-img {
    width: 100%;
    max-width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.country-name {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.see-more-link {
    color: var(--red-accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.see-more-link:hover {
    color: white;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #222 !important;
}

.footer-contact {
    font-size: 1rem;
}

.footer-legal {
    font-size: 0.8rem;
}

.footer-legal a {
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .content-text {
        font-size: 0.85rem;
    }
    
    .countries-title {
        font-size: 1.5rem;
    }
    
    .flag-img {
        max-width: 100px;
        height: 70px;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .gallery-img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .logo {
        max-height: 90px;
    }
    
    .countries-title {
        font-size: 1.3rem;
    }
	.countries-section {
    /*background-color: var(--primary-blue) !important;*/
	background:linear-gradient(to bottom, var(--primary-blue) 0%, var(--primary-blue) 17%, white 17%, white 100%);
}
}

