/* ============================================
   CSS DÉDIÉ PAGE PLINTHES
   ============================================ */

/* ===== BANNIÈRE IMAGES ===== */
.plinthes-banner {
    padding: 120px 60px 40px;
    background: #fff;
}

.plinthes-banner-content {
    max-width: 1600px;
    margin: 0 auto;
}

.plinthes-images-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.plinthes-image-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.plinthes-image-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.plinthes-image-item:hover img {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.plinthes-image-label {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #5a5a3a;
    letter-spacing: 0.3px;
}

/* ===== SECTION CONTENU PRINCIPAL ===== */
.plinthes-content-section {
    padding: 50px 60px 80px;
    background: #f8f8f8;
}

.plinthes-content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Colonne texte */
.plinthes-text-col {
    flex: 1;
    max-width: 750px;
}

.plinthes-description {
    margin-bottom: 35px;
}

.plinthes-description p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 15px 0;
}

.plinthes-description strong {
    font-weight: 600;
    color: #000;
}

.plinthes-btn {
    display: inline-block;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.plinthes-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Colonne stats */
.plinthes-stats-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.plinthes-stats {
    display: flex;
    gap: 80px;
}

.plinthes-stat-item {
    text-align: center;
}

.plinthes-stat-number {
    font-size: 120px;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.plinthes-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== RESPONSIVE TABLETTE (1024px) ===== */
@media (max-width: 1024px) {
    .plinthes-banner {
        padding: 100px 40px 30px;
    }
    
    .plinthes-images-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .plinthes-content-section {
        padding: 40px 40px 80px;
    }
    
    .plinthes-content-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .plinthes-text-col {
        max-width: 100%;
    }
    
    .plinthes-text-col h1 {
        font-size: 42px;
    }
    
    .plinthes-stats-col {
        width: 100%;
        padding-top: 0;
    }
    
    .plinthes-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 30px;
    }
    
    .plinthes-stat-number {
        font-size: 60px;
    }
}

/* ===== RESPONSIVE MOBILE (768px) ===== */
@media (max-width: 768px) {
    .plinthes-banner {
        padding: 90px 20px 20px;
    }
    
    .plinthes-images-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .plinthes-image-label {
        font-size: 12px;
        margin-top: 10px;
    }
    
    .plinthes-content-section {
        padding: 30px 20px 60px;
    }
    
    .plinthes-content-wrapper {
        gap: 40px;
    }
    
    .plinthes-text-col h1 {
        font-size: 32px;
    }
    
    .plinthes-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .plinthes-description p {
        font-size: 15px;
    }
    
    .plinthes-btn {
        width: 100%;
        text-align: center;
        padding: 14px 30px;
    }
    
    .plinthes-stats-col {
        justify-content: center;
    }
    
    .plinthes-stats {
        flex-direction: row;
        justify-content: center;
        gap: 25px;
    }
    
    .plinthes-stat-item {
        text-align: center;
    }
    
    .plinthes-stat-number {
        font-size: 36px;
    }
    
    .plinthes-stat-label {
        font-size: 10px;
    }
}

/* ===== SECTION HABILLAGE ===== */
.plinthes-habillage-section {
    padding: 80px 30px;
    background: #f8f8f8;
}

.plinthes-habillage-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: center;
}

.plinthes-habillage-text {
    padding-right: 20px;
}

.plinthes-habillage-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.plinthes-habillage-text p:last-of-type {
    margin-bottom: 35px;
}

.plinthes-habillage-text strong {
    font-weight: 600;
    color: #000;
}

.plinthes-nuancier-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.plinthes-nuancier-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.plinthes-habillage-image {
    width: 100%;
    max-width: 500px;
    justify-self: end;
}

.plinthes-habillage-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive habillage */
@media (max-width: 1024px) {
    .plinthes-habillage-section {
        padding: 60px 40px;
    }
    
    .plinthes-habillage-content {
        gap: 40px;
    }
    
    .plinthes-habillage-text {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .plinthes-habillage-section {
        padding: 50px 20px;
    }
    
    .plinthes-habillage-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plinthes-habillage-text {
        padding-right: 0;
        order: 1;
        text-align: center;
    }
    
    .plinthes-habillage-image {
        order: 2;
        justify-self: center;
    }
    
    .plinthes-habillage-text p {
        font-size: 15px;
    }
    
    .plinthes-nuancier-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== SECTION DÉTAILS PLINTHES ===== */
.plinthes-details-section {
    padding: 80px 60px;
    background: #f8f8f8;
}

.plinthes-details-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: start;
}

.plinthes-details-text {
    padding-right: 20px;
}

.plinthes-details-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.plinthes-details-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.plinthes-details-text ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.plinthes-details-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #000;
}

.plinthes-details-text strong {
    font-weight: 600;
    color: #000;
}

.plinthes-details-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.plinthes-details-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.plinthes-details-image {
    width: 100%;
    max-width: 500px;
    justify-self: end;
}

.plinthes-details-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive details section */
@media (max-width: 1024px) {
    .plinthes-details-section {
        padding: 60px 40px;
    }
    
    .plinthes-details-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .plinthes-details-section {
        padding: 50px 20px;
    }
    
    .plinthes-details-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plinthes-details-text {
        padding-right: 0;
        text-align: center;
    }
    
    .plinthes-details-text ul li {
        text-align: left;
    }
    
    .plinthes-details-image {
        justify-self: center;
        max-width: 100%;
    }
    
    .plinthes-details-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== SECTION PLINTHE À GORGE ===== */
.plinthes-gorge-section {
    padding: 80px 60px;
    background: #fff;
}

.plinthes-gorge-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.plinthes-gorge-image {
    width: 95%;
}

.plinthes-gorge-image img {
    width: 100%;
    height: auto;
    display: block;
}

.plinthes-gorge-text {
    padding-top: 0;
    padding-left: 80px;
}

.plinthes-gorge-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.2;
    margin-left: -30px;
}

.plinthes-gorge-subtitle {
    display: block;
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
    margin-left: -30px;
}

.plinthes-gorge-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.plinthes-gorge-text strong {
    font-weight: 600;
    color: #000;
}

/* Responsive gorge section */
@media (max-width: 1024px) {
    .plinthes-gorge-section {
        padding: 60px 40px;
    }
    
    .plinthes-gorge-content {
        gap: 40px;
    }
    
    .plinthes-gorge-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .plinthes-gorge-section {
        padding: 50px 20px;
    }
    
    .plinthes-gorge-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plinthes-gorge-text {
        text-align: center;
        padding-left: 0;
    }
    
    .plinthes-gorge-text h2 {
        font-size: 24px;
        margin-left: 0;
    }
    
    .plinthes-gorge-subtitle {
        margin-left: 0;
    }
    
    .plinthes-gorge-text p {
        text-align: center;
    }
    
    .plinthes-gorge-image {
        order: -1;
        width: 100%;
    }
}

/* ===== SECTION FAQ ===== */
.plinthes-faq-section {
    padding: clamp(2rem, 4vw, 4rem) clamp(3rem, 5vw, 5rem);
    background: #f5f5f5;
}

.plinthes-faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.plinthes-faq-item {
    border-top: 1px solid #ddd;
}

.plinthes-faq-item:last-child {
    border-bottom: 1px solid #ddd;
}

.plinthes-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.plinthes-faq-question span:first-child {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 500;
    color: #333;
}

.plinthes-faq-icon {
    font-size: 1.3rem;
    color: #999;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.plinthes-faq-item.open .plinthes-faq-icon {
    transform: rotate(45deg);
}

.plinthes-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.plinthes-faq-item.open .plinthes-faq-answer {
    max-height: 800px;
    padding-bottom: 1.5rem;
}

.plinthes-faq-answer p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 0.6rem 0;
}

.plinthes-doc-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.plinthes-doc-link:hover {
    color: #000;
    text-decoration: underline;
}

