:root {
    --color-primary: #21ACC5;
    --color-secondary: #F87251;
    --color-accent-2: #2D8CFF;
    --color-success: #7ECC2C;
    --color-text: #222;
    --color-sub: #555;
    --color-bg: #F9FBFF;
    --color-card: #FFFFFF;
    --color-white: white;
}
 

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fb;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.btn-action {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: 1px solid var(--color-secondary);
    transition: 0.3s ease;
}

.btn-action:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 5px 12px rgba(33, 172, 197, 0.4);
    transform: translateY(-2px);
    color: var(--color-white);
}

.main-content {
    flex: 1;    
    padding-top: 180px;
    justify-content: center;
}

/* Mobile */
@media (max-width: 768px) {
    .main-content {
        padding-top: 145px; 
    }
}


/* Container des boutons */
.floating-actions {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
}

.floating-actions a {
    padding: 8px; /* zone tactile étendue */
}

.floating-btn {
    width: 60px;
    height: 60px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-decoration: none;
    touch-action: manipulation;
}



/* WhatsApp */
.floating-btn.whatsapp {
    background: #25D366;
}

/* Messenger */
.floating-btn.messenger {
    background: linear-gradient(135deg, #0084FF, #006AFF);
}

/* Hover */
.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}


@media (hover: none) {
    .floating-btn:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }
}