/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #ffffff;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0.5rem;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #408224;
}

nav ul li a.active {
    color: #408224;
    font-weight: 600;
}

/* Header control - language selector removed (site en Français uniquement) */

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.team-member {
    background: #fff;
    border: 1px solid #e8efe4;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.team-member h3 {
    margin: 0.5rem 0 0.25rem 0;
    font-size: 1.1rem;
    color: #0b3b1a;
}

.team-member a.name-link {
    color: #0b3b1a;
    text-decoration: none;
    font-weight: 600;
}

.team-member p.role {
    color: #507a53;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-member p.desc {
    font-size: 0.95rem;
    color: #333;
}

/* Hero banner with nature background */
.hero-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    height: 460px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: linear-gradient(rgba(10,30,12,0.45), rgba(10,30,12,0.25)), url('../images/Header.jpg');
}

.hero-content {
    position: relative;
    left: 4%;
    z-index: 10;
    width: 90%;
    max-width: 600px;
    color: #ffffff;
}

.hero-title {
    font-size: 2.35rem;
    margin-bottom: 0.5rem;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

/* Footer */
footer.site-footer {
    background: #f6faf4;
    border-top: 1px solid #e6efe3;
    padding: 1.5rem 1rem;
    margin-top: 1rem;
}

.hero-subtitle {
    color: #ffffff;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.footer-section h4 {
    color: #0b3b1a;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-section p:hover {
    color: #408224;
}

.footer-section a:hover {
    color: #2d5f1a;
}

.social-list {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #0b3b1a;
    text-decoration: none;
    font-weight: 700;
}

.footer-contact a {
    display: block;
    color: #0b3b1a;
    text-decoration: none;
    margin-bottom: 0.35rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 1.25rem;
    color: #556b56;
    font-size: 0.95rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #0b3b1a;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0b3b1a;
    margin: 5px 0;
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #e0e0e0;
        padding: 1rem 0;
        z-index: 99;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0.5rem 0;
        padding: 0.5rem 1rem;
        width: 100%;
    }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hero-banner { height: 360px; }
    .hero-title { font-size: 1.8rem; }
    .team-grid { grid-template-columns: 1fr; }
    nav {
        padding: 0 1rem;
    }
    .footer-grid { grid-template-columns: 1fr; }
    .social-icons { gap: 1rem; }
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Banner */
.hero-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem;
    height: 400px;
    background-color: #f0f0f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    z-index: 10;
    width: 90%;
    max-width: 600px;
}

.hero-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    background-color: #408224;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-shadow: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
    background-color: #2d5f1a;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

/* Section Styles */
section {
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d5f1a;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d5f1a;
}

p {
    margin-bottom: 1rem;
    color: #000000;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.column {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #408224;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn:hover {
    background-color: #2d5f1a;
}

.btn-secondary {
    background-color: #408224;
    color: #ffffff;
}

/* Guide Block */
.guide-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.guide-image {
    width: 100%;
    min-height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-content {
    display: flex;
    flex-direction: column;
}

.guide-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
}

.contact-info a {
    color: #408224;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info a.btn {
    color: #ffffff;
}

.contact-info a.btn:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Social Block */
.social-block {
    margin-top: 0;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.social-block h2 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.social-icon {
    padding: 0.6rem 1.25rem;
    background-color: #408224;
    border: none;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    background-color: #2d5f1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.project-address a {
    color: #408224;
    text-decoration: none;
    font-weight: 600;
}

.project-address a:hover {
    text-decoration: underline;
}
.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    margin-top: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #ffffff;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 3rem;
}

footer p {
    color: #000000;
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    nav ul li {
        width: 100%;
        text-align: center;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .guide-block {
        grid-template-columns: 1fr;
    }

    .guide-buttons {
        flex-direction: column;
    }

    .guide-buttons .btn {
        width: 100%;
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-banner {
        height: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    main {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}


