/*
Theme Name: Skant Pro
Theme URI: https://example.com
Author: Votre Nom
Author URI: https://example.com
Description: Thème WordPress moderne pour entreprise hi-tech avec animations au scroll et intégration Elementor complète
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: skant-pro
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #94a3b8;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations au scroll */
[data-scroll-animation] {

    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll-animation].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll-animation="fade-left"] {
    transform: translateX(-50px);
}

[data-scroll-animation="fade-right"] {
    transform: translateX(50px);
}

[data-scroll-animation="scale"] {
    transform: scale(0.8);
}

[data-scroll-animation].is-visible[data-scroll-animation="fade-left"],
[data-scroll-animation].is-visible[data-scroll-animation="fade-right"] {
    transform: translateX(0);
}

[data-scroll-animation].is-visible[data-scroll-animation="scale"] {
    transform: scale(1);
}

/* Parallax */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Effets de gradient modernes */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-border {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: var(--gradient);
    z-index: -1;
}

/* Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Utilities */
.container {
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }
}
/* ======= Overlay Menu ======= */
.mobile-overlay {
  position: fixed;
  top: 79px;
  inset: 0;
  height: 100vh;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay-inner {
  display: flex;
  width: 100%;
  height: 100%;
}

.overlay-menu,
.overlay-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.overlay-menu {
  transform: translateX(-100%);
  opacity: 0;
  background: rgba(85, 67, 252, 0.1);
  backdrop-filter: blur(10px);
}

.overlay-image {
  transform: translateX(100%);
  opacity: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.mobile-overlay.active .overlay-menu {
  transform: translateX(0);
  opacity: 1;
}

.mobile-overlay.active .overlay-image {
  transform: translateX(0);
  opacity: 1;
}

/* Liens du menu overlay */
.overlay-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.overlay-nav-menu li {
  margin: 1rem 0;
  list-style: none;
  text-align: left;
}
.overlay-nav-menu a {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.overlay-nav-menu a:hover {
  color: var(--accent-color, #00bcd4);
}

/* Image */
.overlay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablette : horizontal */
@media (max-width: 1024px) {
  .overlay-inner {
    flex-direction: row;
  }
}

/* Mobile : vertical */
@media (max-width: 500px) {
  .overlay-inner {
    flex-direction: column;
  }
  .overlay-menu,
  .overlay-image {
    flex: none;
    height: 50%;
  }
}

/* ======= Animation Burger ======= */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10000;
  position: relative;
}
.menu-toggle .menu-icon {
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: 0.3s ease;
}
.menu-toggle.active .menu-icon:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .menu-icon:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .menu-icon:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* === MENU SLIDE-IN (depuis la gauche) === */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 80px 20px;
}
.nav-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  z-index: -1;
}
/* Quand le menu est actif */
.nav-menu.active {
  transform: translateX(0);
}

/* Liens du menu */
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin: 15px 0;
}

.nav-menu a {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #00c6ff;
}
/**
 * Styles complets pour Skant Pro Theme
 */

/* ============================================
   HEADER & NAVIGATION
============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    height: 80px;
}
.site-header div.container {
    height: 100%;
    display: flex; 
    justify-content: space-between; 
}
.main-navigation {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.site-header .mobile-overlay{
    top: 80px;
}
.site-header .site-branding .custom-logo-link img{
    height: 80px;
    transition: all 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 60px;
}
.site-header.scrolled  .site-branding .custom-logo-link img{
    height: 60px;
    transition: all 0.3s ease;
}
.site-header.scrolled .mobile-overlay{
    top: 60px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .custom-logo-link img {
    width: auto;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.site-branding .custom-logo-link:hover img {
    transform: scale(1.05);
}

.site-title a {
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--gradient);
    transition: transform 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
    transform: translateX(-50%) scaleX(1);
}



.menu-toggle .menu-icon {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ============================================
   HERO SECTION
============================================ */

.skant-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(99, 102, 241, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

/* ============================================
   SERVICE CARDS
============================================ */

.skant-service-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.skant-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skant-service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 48px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   COUNTERS
============================================ */

.skant-counter {
    text-align: center;
    padding: 30px;
}

.counter-value {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.counter-number {
    display: inline-block;
    min-width: 80px;
}

.counter-label {
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FOOTER
============================================ */

.site-footer {
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-widget-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget-column .widget {
    margin-bottom: 30px;
}

.footer-widget-column .widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-widget-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-column ul li {
    margin-bottom: 10px;
}

.footer-widget-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget-column ul li a:hover {
    color: white;
}

.site-info {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: white;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 10px;
    }
}

/* ============================================
   ELEMENTOR COMPATIBILITY
============================================ */

.elementor-section {
    position: relative;
}

.elementor-widget-wrap {
    position: relative;
}

/* Support pour les sections pleine largeur */
.elementor-section.elementor-section-stretched {
    width: 100% !important;
    left: 0 !important;
}
/**
 * Effets CSS avancés pour Skant Pro
 */

/* ============================================
   EFFETS INTERACTIFS AVANCÉS
============================================ */

/* Effet d'encre qui se propage */
.ink-effect {
    position: relative;
    overflow: hidden;
}

.ink-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ink-effect:hover::before {
    animation: ink-spread 0.6s ease-out;
}

@keyframes ink-spread {
    to {
        width: 400px;
        height: 400px;

    }
}

/* Effet de brillance mouvante */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.shine-effect:hover::after {
    left: 100%;
}

/* Effet de pulsation */
.pulse-effect {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Effet de flottement */
.float-effect {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Effet de dégradé animé */
.gradient-shift {
    background: linear-gradient(-45deg, #6366f1, #8b5cf6, #ec4899, #6366f1);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Effet de bordure animée */
.animated-border {
    position: relative;
    padding: 20px;
}

.animated-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899, #6366f1);
    background-size: 300% 300%;
    animation: border-rotate 3s linear infinite;
    border-radius: 10px;
    z-index: -1;
}

@keyframes border-rotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ============================================
   EFFETS DE TEXTE
============================================ */

/* Texte avec effet de remplissage */
.fill-text {
    position: relative;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.fill-text:hover {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Texte avec ombre fluide */
.shadow-text {
    text-shadow: 
        0 0 10px rgba(99, 102, 241, 0.3),
        0 0 20px rgba(139, 92, 246, 0.2),
        0 0 30px rgba(236, 72, 153, 0.1);
}

/* ============================================
   EFFETS DE CARTE/BOX
============================================ */

/* Carte avec bordure dégradée */
.gradient-card {
    position: relative;
    border-radius: 20px;
    padding: 30px;
    background: white;
}

.gradient-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Carte avec shadow étendue */
.elevated-card {
    padding: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.08),
        0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.elevated-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ============================================
   EFFETS DE BOUTONS AVANCÉS
============================================ */

/* Bouton avec animation de remplissage */
.fill-button {
    position: relative;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fill-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    z-index: -1;
    transition: left 0.3s ease;
}

.fill-button:hover::before {
    left: 0;
}

.fill-button:hover {
    color: white;
    border-color: transparent;
}

/* Bouton avec icône animée */
.button-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.button-with-icon svg {
    transition: transform 0.3s ease;
}

.button-with-icon:hover svg {
    transform: translateX(5px);
}

/* ============================================
   BACKGROUND EFFECTS
============================================ */

/* Blob background */
.blob-background {
    position: relative;
    background: white;
    overflow: hidden;
}

.blob-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob-animation 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes blob-animation {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(0, 0);
    }
    25% {
        border-radius: 58% 42% 38% 62% / 58% 58% 42% 42%;
        transform: translate(30px, -30px);
    }
    50% {
        border-radius: 35% 65% 42% 58% / 65% 35% 58% 42%;
        transform: translate(-20px, 30px);
    }
    75% {
        border-radius: 42% 58% 65% 35% / 35% 65% 35% 65%;
        transform: translate(30px, 20px);
    }
}

/* Grid background */
.grid-background {
    position: relative;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Dot background */
.dot-background {
    background-image: radial-gradient(circle, rgba(99, 102, 241, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* ============================================
   ANIMATIONS DE CHARGEMENT
============================================ */

/* Skeleton loader */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.05) 25%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(99, 102, 241, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   CURSEUR PERSONNALISÉ
============================================ */

.custom-cursor {
    position: fixed;
    width: 15px;
    height: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    width: 30px;
    height: 30px;
    border-width: 3px;
    border-color: var(--secondary-color);
    background: rgba(139, 92, 246, 0.1);
}

.custom-cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

.custom-cursor-follower.hover {
    width: 50px;
    height: 50px;
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(99, 102, 241, 0.05);
}

/* Masquer le curseur par défaut */

/* Afficher le curseur sur les inputs */
input,
textarea,
select {
    cursor: text;
}

button,
a {
    cursor: pointer;
}

/* ============================================
   MEDIA QUERIES
============================================ */

@media (max-width: 768px) {
    /* Désactiver les effets complexes sur mobile */
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
    
    /* Animations simplifiées */
    .float-effect {
        animation: float 2s ease-in-out infinite;
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    /* Réduire les tailles de blob */
    .blob-background::before {
        width: 200px;
        height: 200px;
    }
}