/* ============================================
   CSS DÉDIÉ PAGE COMPLEMENT DE CHANTIER
   ============================================ */

body {
    background: #f5f5f5;
}

/* ============================================
   SECTION HERO
   ============================================ */

.cdc-hero-section {
    padding: clamp(6rem, 8vw, 8rem) clamp(3rem, 5vw, 5rem) clamp(4rem, 6vw, 6rem);
    background: #f5f5f5;
}

.cdc-hero-wrapper {
    display: flex;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
}

/* Colonne gauche avec image + label */
.cdc-hero-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.cdc-hero-left:hover {
    transform: translateY(-5px);
}

.cdc-hero-left:hover .cdc-hero-image img {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Image principale */
.cdc-hero-image {
    width: 100%;
}

.cdc-hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: box-shadow 0.3s ease;
}

/* Label sous l'image */
.cdc-hero-label {
    padding: 1rem 0;
}

.cdc-hero-arrow {
    font-size: 1rem;
    color: #333;
    margin-right: 0.5rem;
}

.cdc-hero-title {
    font-size: clamp(1.1rem, 1.4vw, 1.3rem);
    font-weight: 600;
    color: #000;
}

.cdc-hero-subtitle {
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    color: #666;
    margin: 0.3rem 0 0 1.5rem;
}

/* Contenu à droite */
.cdc-hero-content {
    flex: 1;
}

.cdc-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cdc-hero-text {
    margin-bottom: 2rem;
}

.cdc-hero-text p {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.cdc-hero-text p:last-child {
    margin-bottom: 0;
}

.cdc-hero-text strong {
    font-weight: 600;
    color: #000;
}

/* Grille des produits */
.cdc-products-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cdc-product-card {
    flex: 1;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.cdc-product-image {
    width: 89.3%;
    aspect-ratio: 5/5;
    overflow: hidden;
}

.cdc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cdc-product-card:hover .cdc-product-image img {
    transform: scale(1.03);
}

.cdc-product-info {
    padding: 1rem 0;
}

.cdc-product-arrow {
    font-size: 0.9rem;
    color: #333;
    margin-right: 0.4rem;
}

.cdc-product-name {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 600;
    color: #000;
}

.cdc-product-desc {
    font-size: clamp(0.8rem, 0.95vw, 0.9rem);
    color: #666;
    margin: 0.3rem 0 0 1.3rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .cdc-hero-wrapper {
        flex-direction: column;
    }
    
    .cdc-hero-left {
        flex: none;
        width: 100%;
        max-width: 600px;
    }
    
    .cdc-products-grid {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .cdc-hero-section {
        padding: 5rem 1.5rem 3rem;
    }
    
    .cdc-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cdc-products-grid {
        flex-direction: column;
    }
    
    .cdc-product-image {
        aspect-ratio: 16/10;
        max-height: none;
    }
}
