:root {
    --primary-color: #ff007f; /* Rose vif */
    --secondary-color: #00dfd8; /* Cyan dynamique */
    --dark-bg: #1a1a1a;
    --accent-color: #7000ff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #e60072;
    border-color: #e60072;
}

.text-highlight {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(255,0,127,0.4) 100%), 
                url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
}

/* Utilities */
.underline {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin-top: 10px;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 127, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}