/* Import fonts */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #0D1B2A;
}

/* GENERAL */
.section {
    padding: 80px 5%;
    text-align: center;
}

h2 {
    font-size: 34px;
    font-weight: 700;
}

p {
    font-size: 17px;
    line-height: 1.6;
}

#img_logo {
    width: 5rem;
}

/* HEADER */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 10;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
}

.logo {
    font-weight: 700;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #0D1B2A;
    font-weight: 600;
}

.don-btn {
    background: #1B5E20;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
}

/* HERO */
#hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    color: white;
    position: relative;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.6);
}

.hero-content {
    position: relative;
}

.hero-buttons {
    margin-top: 3rem;
}

.hero-buttons a {
    margin: 10px;
}

/* BUTTONS */
.btn-primary {
    background: #1B5E20;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
}

.btn-secondary {
    border: 2px solid #C9A66B;
    color: #C9A66B;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
}

/* CARDS */
.grid-3, .grid-4 {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card, .project-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* HIGHLIGHT */
.highlight {
    display: flex;
    flex-wrap: wrap;
    background: #F5E8D3;
    padding: 60px 5%;
}

.highlight-text {
    flex: 1;
    padding: 20px;
}

.highlight-img {
    flex: 1;
    min-height: 350px;
    background: url('https://images.unsplash.com/photo-1521791055366-0d553872125f') center/cover no-repeat;
    border-radius: 12px;
}

/* PARTNERS */
.partners {
    background: #0D1B2A;
    color: white;
    padding: 70px 5%;
}

.partenaires {
    text-align: center;
    padding: 40px 20px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.logo-item {
    width: 150px;
    text-align: center;
}

.logo-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #FFF;
}


/* CONTACT */
.contact {
    background: #F5E8D3;
}

/* FOOTER */
footer {
    background: #0D1B2A;
    color: white;
    text-align: center;
    padding: 20px;
}
