/* Styles pour la page réalisations */
.realisations-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/realisations/hero-bg.jpg');
    height: 400px;
}

.realisations-intro {
    padding: 60px 0;
    background-color: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: var(--secondary-gray);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.intro-content p {
    color: var(--secondary-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.realisations-gallery {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-image {
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-content {
    padding: 25px;
}

.gallery-content h3 {
    color: var(--secondary-gray);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.location {
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.location i {
    margin-right: 5px;
}

.description {
    color: var(--secondary-gray);
    margin-bottom: 15px;
    line-height: 1.5;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .realisations-hero {
        height: 300px;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
}