/* Interventions Page Styles */

.interventions-page {
    padding-bottom: 60px;
    font-family: 'Comfortaa', sans-serif;
    color: #444;
}

/* Breadcrumbs */
.interventions-breadcrumbs {
    padding: 20px 0;
    font-size: 0.9rem;
    color: #666;
}

.interventions-breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.interventions-breadcrumbs span {
    color: #333;
}

/* Wood Headline */
.wood-headline {
    background: url('../images/wood_banner_texture.png') no-repeat center center;
    background-size: cover;
    padding: 10px 40px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.wood-headline h1 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
    font-family: 'Poetsen One', sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Intro Section */
.interventions-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.intro-left {
    flex: 1.2;
    position: relative;
}

.intro-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-overlay-box {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: rgba(188, 158, 130, 0.9);
    padding: 25px;
    border-radius: 20px;
    color: #fff;
    width: 80%;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.intro-overlay-box h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: bold;
}

.intro-overlay-box p {
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.intro-overlay-box .pour-qui {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 15px;
}

.intro-right {
    flex: 0.8;
}

.instruction-box {
    background: #e9f5e9 url('../images/pngtree-clouds-with-nice-natural-blue-sky-png-image_5494441.png') no-repeat bottom right;
    background-size: 150px;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Added leaf patterns placeholder via CSS symbols or pseudo-elements if needed */
.instruction-box::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    background: url('../images/n1.png') no-repeat center center;
    background-size: contain;
    opacity: 0.3;
}

.instruction-box h2 {
    color: #2e7d32;
    font-family: 'Poetsen One', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.instruction-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

/* Interventions Grid */
.interventions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.intervention-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.intervention-card:hover {
    transform: translateY(-5px);
}

.intervention-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intervention-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    color: #fff;
}

.intervention-card h2 {
    font-family: 'Poetsen One', sans-serif;
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
}

.btn-learn-more {
    align-self: flex-start;
    border: 2px solid #fff;
    padding: 8px 15px;
    border-radius: 5px;
    color: #fff!important;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(2px);
    transition: background 0.3s;
}

.btn-learn-more:hover {
    background: rgba(255,255,255,0.2);
}

/* Reservation Button */
.reservation-container {
    text-align: center;
    margin-bottom: 80px;
}

.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #95c095;
    color: #fff!important;
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(149, 192, 149, 0.4);
    transition: background 0.3s;
}

.btn-reserve:hover {
    background: #84af84;
}

/* Testimonial Banner */
.testimonial-banner {
    background: #fdfef1 url('../images/n1.png') no-repeat center center;
    background-size: cover;
    border-radius: 30px;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #555;
    font-weight: 500;
}

.btn-testimonial {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #95c095;
    color: #fff!important;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.boar-illustration {
    flex: 0 0 200px;
    position: relative;
    margin-right: -40px;
}

.boar-illustration img {
    width: 100%;
    height: auto;
    transform: rotate(2deg);
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.15));
}

/* Responsive */
@media (max-width: 992px) {
    .interventions-intro {
        flex-direction: column;
    }
    .intro-overlay-box {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
    .interventions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-banner {
        flex-direction: column;
        padding: 40px 20px;
    }
    .boar-illustration {
        margin-right: 0;
        margin-top: 20px;
        order: -1;
    }
}

@media (max-width: 600px) {
    .interventions-grid {
        grid-template-columns: 1fr;
    }
}
