/* ProMaallem Global Design System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Strict Color Palette */
    --primary: #4361EE;       /* Bleu Royal */
    --secondary: #03045E;     /* Bleu Nuit */
    --background: #F8FAFC;    /* Slate 50 */
    --surface: #FFFFFF;       /* White */
    --muted: #94A3B8;         /* Slate 400 */
    
    /* Layout */
    --max-width: 80rem;       /* max-w-7xl */
}

body {
    background-color: var(--background);
    color: #1E293B; /* Slate 800 */
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.025em; /* tracking-tight */
    color: var(--secondary);
}

/* Component: Glass Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Component: Hero Pattern */
.hero-pattern {
    background-color: #F8FAFC;
    background-image: radial-gradient(#4361EE 0.5px, transparent 0.5px), radial-gradient(#4361EE 0.5px, #F8FAFC 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.5;
}

/* Utilities */
.container-custom {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    border-radius: 9999px; /* rounded-full */
    box-shadow: 0 10px 15px -3px rgba(67, 97, 238, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(67, 97, 238, 0.4);
}

.card-premium {
    background-color: var(--surface);
    border-radius: 1.5rem; /* rounded-3xl */
    border: 1px solid #F1F5F9; /* border-slate-100 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
