:root {
    
    --primary: #0b0e11; 
    
  
    --accent: #00d4ff;  
    
    --bg: #ffffff; 
    --text: #1a1a1a;
}
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    margin: 0;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }


.disclaimer-bar {
    background: #e9ecef;
    color: #666;
    font-size: 0.85rem;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
	position: sticky; 
    top: 0; 
    z-index: 9999; 
    
    
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	
}
.noaff {
    font-weight: 800;            
    color: var(--primary);        
    border-bottom: 2px solid var(--accent); 
    padding-bottom: 1px;
    font-size: 1.1rem;            
}


header { padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }

nav { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; }


.logo span {
    background: linear-gradient(45deg, #00d4ff, var(--primary)); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo-link {
    text-decoration: none;
}

.nav-links { display: flex; list-style: none; gap: 20px;  }
.nav-links a { 
    text-decoration: none; 
    color: #555; 
    font-weight: 500; 
    font-size: 0.9rem; 
    transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--accent); } 



.hero { padding: 100px 0; text-align: center; }
h1 { font-size: 3.5rem; line-height: 1.1; color: var(--primary); margin-bottom: 20px; }

.status-box {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 40px;
    font-weight: 600;
}

.pulse {
    height: 10px; width: 10px; background: var(--accent);
    border-radius: 50%; margin-right: 15px;
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.partenaire{
	font-size:25px;
	font-weight:bold;
	
	
	
	
}


.business-content {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap;     
    gap: 30px;           
    justify-content: center; 
    margin-top: 50px;
}


.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    flex: 1;             
    min-width: 300px;    
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}


.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent); 
}

.card h3 {
    color: var(--primary);
    margin-top: 0;
}


.btn-contact {
    display: inline-block;
    background-color: var(--accent); 
    color: var(--primary);           
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s;
}

.btn-contact:hover {
    background-color: var(--primary);
    color: white;
    transform: scale(1.05); 
}

footer {
    padding: 50px 0;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 80px;
}

footer small {
    display: block;
    margin-top: 10px;
    opacity: 0.7;
}

.hero-small {
    padding: 60px 0;
    text-align: center;
}

.hero-small h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.email-backup {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #888; /* J'ai besoin d'un bon verre d'eau ....du .... Québec :) serieusement , un ptit easteregg dans le code c'est toujours drole à voir hein :)  */
    line-height: 1.5;
}

.email-backup strong {
    color: var(--primary); 
    font-weight: 600;
}