/* THEME GLOBAL AKWABA APP - Deep Purple & Sunny Yellow */
:root {
    --primary: #4C1D95; /* Deep Purple */
    --primary-light: #6D28D9;
    --primary-dark: #2E1065;
    --accent: #F59E0B; /* Sunny Yellow */
    --accent-hover: #D97706;
    --text-main: #1F2937;
    --text-light: #F3F4F6;
    --bg-color: #F9FAFB;
    --white: #FFFFFF;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --radius: 12px;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
}

/* NAVBAR Styles */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 15px 5%;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 800;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0; /* Empêche la réduction */
}

.navbar.scrolled .navbar-brand { color: var(--primary) !important; }

.nav-menu { 
    display: flex; 
    gap: 20px; /* Réduit de 24px à 20px */
    align-items: center;
    flex-shrink: 0; /* Empêche la réduction */
    margin-left: auto; /* Pousse le menu à droite */
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap; /* Empêche le retour à la ligne */
    padding: 0 4px; /* Réduit l'espacement horizontal */
}

.nav-link:hover { color: var(--accent) !important; }
.navbar.scrolled .nav-link { color: var(--text-main) !important; }
.navbar.scrolled .nav-link:hover { color: var(--primary) !important; }

.btn-nav {
    background-color: white;
    color: var(--primary);
    padding: 10px 20px; /* Réduit de 24px à 20px */
    border-radius: 99px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.navbar.scrolled .btn-nav {
    background-color: var(--primary);
    color: white;
}

@media (max-width: 992px) {
    .nav-menu { display: none; }
    .navbar { padding: 15px 4%; } /* Réduit padding sur mobile */
}

/* Header & Navbar Shared Styles */
.btn-primary {
    background-color: var(--accent);
    color: var(--primary-dark);
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 12px 28px;
    border-radius: 99px;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    color: white;
}

/* Card Styles */
.card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-light);
}

/* Footer Shared */
footer {
    background-color: #111;
    color: #eee;
}
