/* IoT CSS - Fichier supplémentaire */
:root {
    --iot-color: #16a085;
    --iot-dark: #0d6e5a;
    --iot-light: #1abc9c;
}

/* Styles communs pour toutes les pages de domaine */

.section-animate {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero sections pour chaque domaine */
.domain-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 4rem 0;
}

/* Card styles */
.domain-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.domain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .domain-hero {
        height: auto;
        min-height: 60vh;
        padding: 3rem 0;
    }
    
    .domain-hero h1 {
        font-size: 2.2rem;
    }
}