/**
 * TAXI CLERMONT 63 - About CSS
 * Styles spécifiques à la page À propos
 */

/* ============================================
   HERO SECTION À PROPOS
============================================= */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg-clermont63.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.65) 30%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.7) 80%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}
