/* Variables CSS */
:root {
    --primary: #0F172B;
    --secondary: #FFFFFF;
    --accent-color: #FFBA00;
    --danger-color: #EF4444;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-radius: 24px;
    --shadow-primary: 0px -2px 10px 0px rgba(233, 223, 255, 0.3), 0px -2px 40px 0px rgba(187, 155, 255, 0.15);
    --font-primary: 'Montserrat', sans-serif;
}

/* Reset CSS minimal */
*, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Styles de base */
body {
    font-family: var(--font-primary);
    background-color: var(--primary);
    color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 24px 0;
    background-color: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    border-radius: 24%;
    background: url('./assets/appicon_bg.jpg') no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.logo-text {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -0.5px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.footer-section p {
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-weight: 300;
    opacity: 0.6;
}

/* Typography */
h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.2;
}

h2 {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-top: 32px;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 12px;
}

p {
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 16px;
}

strong {
    font-weight: 500;
    color: var(--accent-color);
}

/* Listes */
ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-weight: 300;
    line-height: 1.8;
}

ul li::before {
    content: "•";
    position: absolute;
    left: 12px;
    color: var(--accent-color);
    font-size: 1.5rem;
    line-height: 1.2;
}
