body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;

}

.blue-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

.orange-gradient {
    background: #F25C05
}

.hero-bg {
    background:
        linear-gradient(rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.699)),
        /* léger assombrissement */
        url('/images/table.jpg');
    /* ton image de fond */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: linear-gradient(90deg, #04241A, #0A5A36, #0C8B43);
    /* Vert AASCOT en fallback */
}


.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #f97316;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-pattern {
    background-image: radial-gradient(circle, rgba(251, 146, 60, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-ascot-light {
    background: radial-gradient(circle at center, #FFFFFF 0%, #E6EFF7 100%);
    min-height: 100vh;
    /* Assure que le fond couvre au moins tout l'écran */
}