/* ===========================
   PAGE EN CONSTRUCTION
=========================== */

.construction-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F9F7F4 0%, #E8F5E9 100%);
    padding: 2rem 0;
}

/* Logo */
.construction-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.construction-logo .logo-image {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

/* Layout 2 colonnes : chien | contenu */
.construction-layout {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 2rem;
    align-items: center;
}

.construction-image {
    display: flex;
    justify-content: flex-end;
    margin-left: -10rem;
}

.construction-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
}

/* Contenu texte */
.construction-content {
    text-align: left;
}

.construction-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.construction-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.construction-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Badges */
.construction-content .badges {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.construction-buttons {
    margin-bottom: 2rem;
}

/* ===========================
   CARDS INFOS + HORAIRES
=========================== */

.construction-infos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.construction-info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border: 2px solid transparent;
    border-bottom: none;
    transition: all 0.3s ease;
}

.construction-info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.info-card-icon {
    width: 52px;
    height: 52px;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.info-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.info-card-body p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    white-space: nowrap;
}

.info-card-link {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-card-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Horaires */
.horaires-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.horaires-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    background: var(--bg-light);
    font-size: 0.9rem;
}

.horaires-list li span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.horaires-list li span:last-child {
    color: var(--text-gray);
}

.horaires-list li.ferme {
    background: rgba(231, 76, 60, 0.05);
}

.horaires-list li.ferme span {
    color: #e74c3c;
    font-weight: 600;
}

/* ===========================
   SECTION CONTACT
=========================== */

.construction-contact {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(107, 142, 35, 0.15);
}

/* Trait décoratif en haut */
.construction-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 0 0 4px 4px;
}

.construction-contact p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.55rem 1.1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white !important;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
    .construction-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .construction-image {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .construction-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Annule le décalage desktop */
    .construction-image {
        margin-left: 0;
        justify-content: center;
    }

    .construction-image img {
        max-width: 220px;
        max-height: 260px;
        object-fit: contain;
        border: none;
        box-shadow: none;
    }

    .construction-content {
        text-align: center;
    }

    .construction-content .badges {
        justify-content: center;
    }

    .construction-infos {
        grid-template-columns: 1fr;
    }

    .construction-title {
        font-size: 2rem;
    }

    .construction-subtitle {
        font-size: 1.1rem;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .construction-logo .logo-image {
        max-width: 180px;
    }

    .construction-title {
        font-size: 1.6rem;
    }

    .construction-content .badges {
        flex-direction: column;
        align-items: center;
    }

    .construction-content .badge {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}