/* CONTENT */
.observations-content {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

/* GRID */
.observations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;

    margin-bottom: 50px;
}

/* CARDS */
.obs-card {
    padding: 25px;
    border-radius: 12px;
    background: #fff;
}

.obs-green {
    background-size: 100%; 
    background-position: center;
    min-height: 150px;
    position: relative;
}

.contribute-section {
    display: flex;
    gap: 40px;
    padding: 40px;
    border-radius: 20px;
}

/* Bloc gauche */
.left-box {
    background-color: #f4e6d9;
    border-radius: 16px;
    padding: 25px;
    width: 320px;
}

/* Bloc droit */
.right-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.description {
    max-width: 520px;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Bouton + sanglier */
.action-row {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

/* Bouton */
.btn-add {
    background-color: #7fa66b;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-add:hover {
    transform: translateY(-3px);
}

/* Sanglier */
.animal-box {
    width: 200px;
    height: 200px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
    margin-left: auto;
}

.obs-test {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    background-image: 1000%;
}


.obs-beige {
    background: #f5e6da;
}

.obs-text {
    display: flex;
    align-items: center;
}

.obs-image {
    min-height: 220px;
    position: relative;
    color: white;
}

.obs-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(166, 122, 91, 0.9);
    width: 90%;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.obs-image-overlay li {
    list-style: none;
    margin-bottom: 8px;
    text-align: left;
}

/* fil d'arianne */
.breadcrumb {
    padding: 10px 20px;
    font-size: 0.82rem;
    color: #555;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: #007acc;
}

.breadcrumb span {
    margin: 0 4px;
}

/* BUTTON */
.obs-cta {
    margin-top: 40px;
    text-align: center;
}

.obs-button {
    background: #4CAF50;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.obs-button:hover {
    background: #3d9442;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contribute-section {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        text-align: center;
    }

    .left-box {
        width: 100%;
        box-sizing: border-box;
    }

    .right-box {
        width: 100%;
    }

    .description {
        margin-bottom: 20px;
        text-align: center;
        max-width: 100%;
    }

    .action-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .btn-add {
        width: auto;
    }

    .animal-box {
        margin: 0 auto;
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .observations-content {
        padding: 40px 15px;
    }

    .observations-grid {
        grid-template-columns: 1fr;
    }

    .obs-image-overlay {
        padding: 15px;
        bottom: 15px;
    }

    .obs-image-overlay li {
        font-size: 14px;
    }
}