/* ============================================================================
   ZONE INTERVENTION PAGE STYLES
   Styles spécifiques à la page zone d'intervention
   ============================================================================ */

/* Zone cards */
.zone-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.zone-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.zone-card:hover {
    border-color: var(--border-light);
    box-shadow: var(--shadow-soft);
}

.zone-card-primary {
    border-color: var(--accent-tech);
    border-width: 2px;
}

.zone-card-header {
    margin-bottom: 1.5rem;
}

.zone-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--bg-subtle);
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.zone-badge-green {
    background: rgba(0, 200, 150, 0.15);
    color: var(--accent-tech);
}

.zone-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.zone-card-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.zone-details {
    background: var(--bg-subtle);
    border-radius: 8px;
    padding: 1.25rem;
}

.zone-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.zone-list-text {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin: 0 !important;
}

/* Conteneur 3D */
.zone-3d-container {
    position: relative;
    perspective: 500px;
}

/* Plan incliné */
.zone-plane {
    transform: rotateX(55deg);
    transform-origin: center center;
}

/* Pin droit, centré */
.zone-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 80px;
    transform: translate(-50%, -70%);
    pointer-events: none;
}


/* Responsive */
@media (max-width: 900px) {
    .zone-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zone-card {
        padding: 1.5rem;
    }

    .zone-card h3 {
        font-size: 1.3rem;
    }
}
