/* Custom CSS for Oliona Software Landing Page */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #4b2666, #e95197);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #5a2f7a, #f061a1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar on scroll */
.navbar-scrolled {
    background-color: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Hero section styling */
#hero {
    background: transparent;
}

/* Global body background */
body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

/* Particle canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Gradient separator bar */
.section-separator {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, #e95197, #449ad5, transparent);
    opacity: 0.6;
}

/* Section spacing */
section {
    scroll-margin-top: 80px;
}

/* Animation for icons */
.icon-circle {
    transition: transform 0.3s ease;
}

.prestation-card {
    transition: transform 0.3s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    border-width: 1px;
}

.card-saas:hover {
    border-color: #e95197; /* Secondary (rose) */
    box-shadow: 0 0 15px rgba(233, 81, 151, 0.3);
}

.card-dev:hover {
    border-color: #449ad5; /* Accent (bleu) */
    box-shadow: 0 0 15px rgba(68, 154, 213, 0.3);
}

.card-audit:hover {
    border-color: #a78bfa !important; /* Violet encore plus clair (Tailwind violet-400) */
    box-shadow: 0 0 25px rgba(167, 139, 250, 0.5);
}

.prestation-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Mobile menu animation */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Language selector */
.lang-option.active {
    background-color: #4b2666;
    color: white;
}

.z-100{
    position: relative;
    z-index: 100;
}

.w-25{
    width: 25%;
}
/* Responsive typography */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1.1rem;
    }
}

/* Contact form input animation */
.form-input {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(31, 41, 55, 0.4); /* gray-800 with lower opacity */
    border: 1px solid rgba(75, 85, 99, 0.3); /* gray-700/30 */
    position: relative;
    z-index: 1;
}

.form-input:hover {
    background-color: rgba(31, 41, 55, 0.6);
    border-color: rgba(68, 154, 213, 0.4); /* accent/40 */
    transform: translateY(-1px);
}

.form-input:focus {
    background-color: rgba(31, 41, 55, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(68, 154, 213, 0.4);
    border-color: #449ad5; /* accent */
    outline: none;
}

/* Float label effect or similar could be added here if structure allowed, 
   but we'll stick to a clean glow and lift for now. */

/* Print styles */
@media print {
    .cta-button, #navbar, footer {
        display: none;
    }
}
.card-saas .check-icon {
    color: #e95197; /* Secondary (rose) */
}

.card-dev .check-icon {
    color: #449ad5; /* Accent (bleu) */
}

.card-audit .check-icon {
    color: #a78bfa; /* Violet clair assorti */
}
