@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
   /*font-family: 'Montserrat', sans-serif;
   /* ou */
    font-family: 'Open Sans', sans-serif;
}

     body {
            /*font-family: 'Open Sans', sans-serif !important;*/
            font-family: 'Montserrat', sans-serif;
            color: #111111; /* Gris foncé pour le texte principal */
            line-height: 1.7; /* Espacement agréable entre les lignes */
            font-size: 16px; /* Taille de base du texte */
            margin: 0;
            padding: 0;
            line-height: 1.6;
        }

/* Navigation Bar Styles */
.navbar {
    background-color: #ffffff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-logo img {
    width: 100px;
}

.navbar-links {
    list-style-type: none;
    display: flex;
    gap: 2rem;
}

.navbar-links a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.navbar-links a.active {
    color: #ff6600;
}

/* Hero Section Styles */
        /* Hero Section Styles */
        .hero-section {
            background-image: url('images/montagne.png');
            background-size: cover;
            background-position: center;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            color: white;
            text-align: center;
        }

        .hero-content {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 2rem;
            border-radius: 10px;
            height: 25%; /* Ajuste la hauteur du fond gris */
            margin-top: 0.5rem; /* Ajuste l’espace au besoin */
        }

/* Main Content Styles */
.main-content {
    width: 80%;
    margin: 0 auto;
}

/* Section Styles */
.section {
    padding: 4rem 0;
    text-align: center;
}

/* Industries Section Styles */
.industries-section {
background-color: #1a2b5f;
color: white;
padding: 4rem 0;
}

.industries-content {
width: 80%;
margin: 0 auto;
}

.grid {
display: grid;
grid-template-columns: repeat(4, 1fr); /* Changed to 4 columns */
gap: 2rem;
margin-top: 2rem;
}

.grid-item {
background-color: white;
border-radius: 10px;
padding: 1rem;
color: #333;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.grid-item img {
width: 100%;
height: auto;
border-radius: 5px;
}

/* Increased padding for Services and Executive Courses Sections */
#services,
#courses {
padding-bottom: 6rem; /* Increased padding at the bottom */
}

#services .grid,
#courses .grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
justify-content: center;
align-items: start;
max-width: 1200px;
margin: 2rem auto 0;
}

#services .grid-item,
#courses .grid-item {
background-color: #f8f8f8;
border-radius: 10px;
padding: 1.5rem;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
justify-content: flex-start;
height: 100%;
}

#services .grid-item h3,
#courses .grid-item h3 {
margin-top: 0;
margin-bottom: 1rem;
}

#services .grid-item p,
#courses .grid-item p {
flex-grow: 1;
}






/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-section {
    margin: 1rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
}

.grid-item {
border: 1px solid red;
}