Spaces:
Running
Running
File size: 25,772 Bytes
3762ac0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 | <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Riane Babet Sécurity - Protection Haut de Gamme</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Montserrat', sans-serif;
color: #f8f8f8;
overflow-x: hidden;
}
.hero-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
filter: brightness(0.4);
}
.title-font {
font-family: 'Playfair Display', serif;
}
.gold-line {
height: 2px;
width: 80px;
background: linear-gradient(90deg, #D4AF37, #F4E5C2, #D4AF37);
margin: 20px auto;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}
.team-member {
transition: all 0.3s ease;
}
.team-member:hover {
transform: scale(1.05);
}
.contact-icon {
transition: all 0.3s ease;
}
.contact-icon:hover {
transform: scale(1.2);
color: #D4AF37;
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #D4AF37;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
</style>
</head>
<body class="bg-black">
<!-- Navigation -->
<nav class="fixed w-full z-50 bg-black bg-opacity-80 backdrop-filter backdrop-blur-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-24 items-center">
<div class="flex-shrink-0 flex items-center">
<span class="text-white title-font text-2xl font-bold tracking-wider">RBS</span>
<span class="ml-2 text-white title-font text-xl hidden sm:block">Riane Babet Sécurity</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-baseline space-x-8">
<a href="#home" class="nav-link text-white hover:text-gold-500 px-3 py-2 text-sm font-medium">Accueil</a>
<a href="#expertise" class="nav-link text-white hover:text-gold-500 px-3 py-2 text-sm font-medium">Expertises</a>
<a href="#realisations" class="nav-link text-white hover:text-gold-500 px-3 py-2 text-sm font-medium">Réalisations</a>
<a href="#equipe" class="nav-link text-white hover:text-gold-500 px-3 py-2 text-sm font-medium">Équipe</a>
<a href="#methodologie" class="nav-link text-white hover:text-gold-500 px-3 py-2 text-sm font-medium">Méthodologie</a>
<a href="#contact" class="nav-link text-white hover:text-gold-500 px-3 py-2 text-sm font-medium">Contact</a>
</div>
</div>
<div class="md:hidden">
<button type="button" class="text-white hover:text-gold-500 focus:outline-none" id="mobile-menu-button">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div class="hidden bg-black bg-opacity-90" id="mobile-menu">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="block px-3 py-2 text-base font-medium text-white hover:text-gold-500">Accueil</a>
<a href="#expertise" class="block px-3 py-2 text-base font-medium text-white hover:text-gold-500">Expertises</a>
<a href="#realisations" class="block px-3 py-2 text-base font-medium text-white hover:text-gold-500">Réalisations</a>
<a href="#equipe" class="block px-3 py-2 text-base font-medium text-white hover:text-gold-500">Équipe</a>
<a href="#methodologie" class="block px-3 py-2 text-base font-medium text-white hover:text-gold-500">Méthodologie</a>
<a href="#contact" class="block px-3 py-2 text-base font-medium text-white hover:text-gold-500">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="relative h-screen flex items-center justify-center overflow-hidden">
<video autoplay muted loop class="hero-video">
<source src="https://assets.mixkit.co/videos/preview/mixkit-bodyguard-walking-with-a-celebrity-in-a-crowd-42950-large.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="absolute inset-0 bg-black opacity-40"></div>
<div class="relative z-10 text-center px-4">
<h1 class="text-4xl md:text-6xl lg:text-7xl font-bold text-white title-font mb-6">
Riane Babet Sécurity
</h1>
<div class="gold-line"></div>
<p class="text-xl md:text-2xl text-white mt-6 mb-10 italic">
"L'ombre qui protège la lumière."
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4 mt-8">
<a href="#devis" class="bg-gradient-to-r from-yellow-600 to-yellow-800 hover:from-yellow-700 hover:to-yellow-900 text-white font-bold py-3 px-8 rounded-sm transition duration-300 transform hover:scale-105">
Demande de devis express
</a>
<a href="#contact" class="bg-transparent border-2 border-yellow-600 hover:bg-yellow-600 text-white font-bold py-3 px-8 rounded-sm transition duration-300 transform hover:scale-105">
Contact 24h/24
</a>
</div>
</div>
<div class="absolute bottom-10 left-0 right-0 flex justify-center">
<a href="#expertise" class="text-white animate-bounce">
<i class="fas fa-chevron-down text-3xl"></i>
</a>
</div>
</section>
<!-- Expertises Section -->
<section id="expertise" class="py-20 bg-black">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-white title-font">Nos Expertises</h2>
<div class="gold-line mt-4"></div>
<p class="mt-6 text-gray-300 max-w-3xl mx-auto">
Des solutions de sécurité sur mesure pour répondre aux besoins les plus exigeants.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Card 1 -->
<div class="service-card bg-gray-900 rounded-sm overflow-hidden transition duration-500 ease-in-out">
<div class="h-48 bg-gradient-to-r from-yellow-800 to-yellow-900 flex items-center justify-center">
<i class="fas fa-user-shield text-6xl text-white opacity-80"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-white mb-3">Sécurité rapprochée</h3>
<p class="text-gray-300">
Protection discrète et efficace pour VIP, personnalités et dirigeants. Escorte sécurisée et gestion des déplacements sensibles.
</p>
<ul class="mt-4 space-y-2 text-gray-400">
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-600 mr-2"></i>
Garde du corps professionnel
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-600 mr-2"></i>
Escorte VIP
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-600 mr-2"></i>
Sécurisation des déplacements
</li>
</ul>
</div>
</div>
<!-- Card 2 -->
<div class="service-card bg-gray-900 rounded-sm overflow-hidden transition duration-500 ease-in-out">
<div class="h-48 bg-gradient-to-r from-yellow-800 to-yellow-900 flex items-center justify-center">
<i class="fas fa-calendar-star text-6xl text-white opacity-80"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-white mb-3">Sécurité événementielle</h3>
<p class="text-gray-300">
Protection complète pour vos événements prestigieux, qu'il s'agisse de concerts, festivals ou mariages VIP.
</p>
<ul class="mt-4 space-y-2 text-gray-400">
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-600 mr-2"></i>
Festivals et concerts
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-600 mr-2"></i>
Mariages VIP
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-600 mr-2"></i>
Événements corporatifs
</li>
</ul>
</div>
</div>
<!-- Card 3 -->
<div class="service-card bg-gray-900 rounded-sm overflow-hidden transition duration-500 ease-in-out">
<div class="h-48 bg-gradient-to-r from-yellow-800 to-yellow-900 flex items-center justify-center">
<i class="fas fa-users text-6xl text-white opacity-80"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-white mb-3">Gestion de foule</h3>
<p class="text-gray-300">
Expertise en contrôle d'accès, filtrage et création de zones VIP sécurisées pour une expérience sans faille.
</p>
<ul class="mt-4 space-y-2 text-gray-400">
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-600 mr-2"></i>
Contrôle d'accès
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-600 mr-2"></i>
Zones VIP sécurisées
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-yellow-600 mr-2"></i>
Gestion des flux
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Réalisations Section -->
<section id="realisations" class="py-20 bg-gray-900">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-white title-font">Nos Réalisations</h2>
<div class="gold-line mt-4"></div>
<p class="mt-6 text-gray-300 max-w-3xl mx-auto">
Des interventions discrètes pour des clients exigeants. Confidentialité absolue garantie.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Project 1 -->
<div class="relative group overflow-hidden rounded-sm">
<img src="https://images.unsplash.com/photo-1492684223066-81342ee5ff30?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Concert sécurisé" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-60 flex flex-col justify-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<h3 class="text-xl font-bold text-white">Tournée internationale 2024</h3>
<p class="text-gray-300 mt-2">Sécurité rapprochée pour une star internationale lors de sa tournée mondiale.</p>
</div>
<div class="absolute inset-0 flex items-center justify-center">
<i class="fas fa-search-plus text-white text-4xl opacity-70 group-hover:opacity-0 transition duration-300"></i>
</div>
</div>
<!-- Project 2 -->
<div class="relative group overflow-hidden rounded-sm">
<img src="https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Mariage VIP" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-60 flex flex-col justify-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<h3 class="text-xl font-bold text-white">Mariage privé exclusif</h3>
<p class="text-gray-300 mt-2">Protection discrète pour un mariage de célébrités à Saint-Tropez.</p>
</div>
<div class="absolute inset-0 flex items-center justify-center">
<i class="fas fa-search-plus text-white text-4xl opacity-70 group-hover:opacity-0 transition duration-300"></i>
</div>
</div>
<!-- Project 3 -->
<div class="relative group overflow-hidden rounded-sm">
<img src="https://images.unsplash.com/photo-1533175269721-d9ec5f6686d1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Festival" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-60 flex flex-col justify-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<h3 class="text-xl font-bold text-white">Festival international</h3>
<p class="text-gray-300 mt-2">Gestion de foule et sécurité pour un festival accueillant 50,000 personnes.</p>
</div>
<div class="absolute inset-0 flex items-center justify-center">
<i class="fas fa-search-plus text-white text-4xl opacity-70 group-hover:opacity-0 transition duration-300"></i>
</div>
</div>
<!-- Project 4 -->
<div class="relative group overflow-hidden rounded-sm">
<img src="https://images.unsplash.com/photo-1497032628192-86f99bcd90bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Conférence" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-60 flex flex-col justify-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<h3 class="text-xl font-bold text-white">Sommet économique</h3>
<p class="text-gray-300 mt-2">Protection de dirigeants lors d'un sommet économique international.</p>
</div>
<div class="absolute inset-0 flex items-center justify-center">
<i class="fas fa-search-plus text-white text-4xl opacity-70 group-hover:opacity-0 transition duration-300"></i>
</div>
</div>
<!-- Project 5 -->
<div class="relative group overflow-hidden rounded-sm">
<img src="https://images.unsplash.com/photo-1517457373958-b7bdd4587205?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Tapis rouge" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-60 flex flex-col justify-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<h3 class="text-xl font-bold text-white">Cérémonie de remise de prix</h3>
<p class="text-gray-300 mt-2">Sécurité rapprochée pour des personnalités sur tapis rouge.</p>
</div>
<div class="absolute inset-0 flex items-center justify-center">
<i class="fas fa-search-plus text-white text-4xl opacity-70 group-hover:opacity-0 transition duration-300"></i>
</div>
</div>
<!-- Project 6 -->
<div class="relative group overflow-hidden rounded-sm">
<img src="https://images.unsplash.com/photo-1556760544-74068565f05c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Transport sécurisé" class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-60 flex flex-col justify-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
<h3 class="text-xl font-bold text-white">Transport sécurisé</h3>
<p class="text-gray-300 mt-2">Convoi sécurisé pour le déplacement d'œuvres d'art de grande valeur.</p>
</div>
<div class="absolute inset-0 flex items-center justify-center">
<i class="fas fa-search-plus text-white text-4xl opacity-70 group-hover:opacity-0 transition duration-300"></i>
</div>
</div>
</div>
<div class="text-center mt-16">
<p class="text-gray-400 italic">
* Par respect pour la confidentialité de nos clients, certains détails ont été omis ou modifiés.
</p>
</div>
</div>
</section>
<!-- Équipe Section -->
<section id="equipe" class="py-20 bg-black">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-white title-font">Notre Équipe</h2>
<div class="gold-line mt-4"></div>
<p class="mt-6 text-gray-300 max-w-3xl mx-auto">
Des professionnels triés sur le volet, formés aux meilleures pratiques de sécurité internationale.
</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Membre 1 -->
<div class="team-member bg-gray-900 rounded-sm overflow-hidden text-center p-6">
<div class="relative w-32 h-32 mx-auto mb-6 rounded-full overflow-hidden border-2 border-yellow-600">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80" alt="Agent" class="w-full h-full object-cover filter blur-sm">
</div>
<h3 class="text-xl font-bold text-white">Agent M.</h3>
<p class="text-yellow-600 text-sm mb-4">Responsable Sécurité Rapprochée</p>
<p class="text-gray-400 text-sm">
Ancien membre des forces spéciales, 15 ans d'expérience en protection VIP.
</p>
<div class="mt-4 flex justify-center space-x-2">
<span class="bg-gray-800 text-yellow-600 text-xs px-2 py-1 rounded">Certifié CIP</span>
<span class="bg-gray-800 text-yellow-600 text-xs px-2 py-1 rounded">Anglais</span>
<span class="bg-gray-800 text-yellow-600 text-xs px-2 py-1 rounded">Krav Maga</span>
</div>
</div>
<!-- Membre 2 -->
<div class="team-member bg-gray-900 rounded-sm overflow-hidden text-center p-6">
<div class="relative w-32 h-32 mx-auto mb-6 rounded-full overflow-hidden border-2 border-yellow-600">
<img src="https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Agent" class="w-full h-full object-cover filter blur-sm">
</div>
<h3 class="text-xl font-bold text-white">Agent S.</h3>
<p class="text-yellow-600 text-sm mb-4">Chef de Mission Événementiel</p>
<p class="text-gray-400 text-sm">
Spécialiste en gestion de crise et coordination d'équipes sur grands événements.
</p>
<div class="mt-4 flex justify-center space-x-2">
<span class="bg-gray-800 text-yellow-600 text-xs px-2 py-1 rounded">Certifié PSP</span>
<span class="bg-gray-800 text-yellow-600 text-xs px-2 py-1 rounded">Espagnol</span>
<span class="bg-gray-800 text-yellow-600 text-xs px-2 py-1 rounded">Premiers Secours</span>
</div>
</div>
<!-- Membre 3 -->
<div class="team-member bg-gray-900 rounded-sm overflow-hidden text-center p-6">
<div class="relative w-32 h-32 mx-auto mb-6 rounded-full overflow-hidden border-2 border-yellow-600">
<img src="https://images.unsplash.com/photo-1544005313-94ddf0286df2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1376&q=80" alt="Agent" class="w-full h-full object-cover filter blur-sm">
</div>
<h3 class="text-xl font-bold text-white">Agent L.</h3>
<p class="text-yellow-600 text-sm mb-4">Expert en Protection Féminine</p>
<p class="text-gray-400 text-sm">
Discrète et efficace, spécialisée dans la protection des personnalités féminines.
</p>
<div class="mt-4 flex justify-center space-x-2">
<span class="bg-gray-800 text-yellow-600 text-xs px-2 py-1 rounded">Certifié EP</span>
<span class="bg-gray-800 text-yellow-600 text-xs px-2 py-1 rounded">Arabe</span>
<span class="bg-gray-800 text-yellow-600 text-xs px-2 py-1 rounded">Self-défense</span>
</div>
</div>
<!-- Membre 4 -->
<div class="team-member bg-gray-900 rounded-sm overflow-hidden text-center p-6">
<div class="relative w-32 h-32 mx-auto mb-6 rounded-full overflow-hidden border-2 border-yellow-600">
<img src="https://images.unsplash.com/photo-1542190891-2093d38760f2?ixlib=rb-4.0
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=christjeason/cccc" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |