/* Variables CSS */
:root {
    /* Couleurs principales */
    --primary-dark: #2c3e50;        /* Texte principal */
    --primary-medium: #34495e;      /* Titres header */
    --primary-light: #2d3436;       /* Titres sections */
    
    /* Couleurs d'accent */
    --accent-blue: #74b9ff;         /* Bleu principal */
    --accent-blue-dark: #0984e3;    /* Bleu foncé */
    --accent-purple: #a29bfe;       /* Violet doux */
    --accent-pink: #fd79a8;         /* Rose doux */
    --accent-purple-dark: #6c5ce7;  /* Violet foncé pour formules */
    
    /* Couleurs de fond */
    --bg-gradient-start: #f5f7fa;   /* Début dégradé fond */
    --bg-gradient-end: #c3cfe2;     /* Fin dégradé fond */
    --bg-white-opaque: rgba(255, 255, 255, 0.95);  /* Fond header */
    --bg-white-semi: rgba(255, 255, 255, 0.8);     /* Fond nav */
    --bg-white-light: rgba(255, 255, 255, 0.9);    /* Fond sections */
    --bg-formula: #f8f9fa;          /* Fond formules */
    
    /* Couleurs de bordure */
    --border-light: #e8f4f8;        /* Bordures claires */
    --border-medium: #ddd;          /* Bordures moyennes */
    --border-blue: #b8e6ff;         /* Bordures liens */
    
    /* Couleurs de fond liens */
    --link-bg-start: #e8f4f8;       /* Début dégradé liens */
    --link-bg-end: #f1f8fc;         /* Fin dégradé liens */
    
    /* Couleurs d'ombre */
    --shadow-light: rgba(0, 0, 0, 0.08);    /* Ombre légère */
    --shadow-medium: rgba(0, 0, 0, 0.1);    /* Ombre moyenne */
    --shadow-strong: rgba(0, 0, 0, 0.12);   /* Ombre forte */
    --shadow-blue: rgba(116, 185, 255, 0.3); /* Ombre bleue */
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    min-height: 100vh;
}

/* Header */
header {
    background: var(--bg-white-opaque);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 3px solid var(--border-light);
    box-shadow: 0 2px 10px var(--shadow-medium);
}

header h1 {
    color: var(--primary-medium);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0;
}

/* Navigation */
nav {
    background: var(--bg-white-semi);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

/* Main content */
main {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
}

/* Sections */
section {
    background: var(--bg-white-light);
    margin: 2rem 0;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    border-left: 5px solid var(--accent-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-strong);
}

section:nth-child(even) {
    border-left-color: var(--accent-purple);
}

section:nth-child(3n) {
    border-left-color: var(--accent-pink);
}

/* Titres des sections */
section h2 {
    color: var(--primary-light);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    border-bottom: 2px solid var(--border-medium);
    padding-bottom: 0.5rem;
}

/* Liens */
section a {
    display: inline-block;
    color: var(--accent-blue-dark);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--link-bg-start) 0%, var(--link-bg-end) 100%);
    border-radius: 8px;
    border: 1px solid var(--border-blue);
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 1rem;
}

section a:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-blue);
}

/* Responsive */
@media (max-width: 768px) {
    main {
        padding: 0 1rem;
        margin: 2rem auto;
    }

    section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    header h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.5rem;
    }
}

/* Amélioration pour les formules mathématiques */
.formula {
    background: var(--bg-formula);
    padding: 1rem;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    border-left: 3px solid var(--accent-purple-dark);
    margin: 1rem 0;
}
/* Navigation */
nav {
    background: var(--bg-white-semi);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    display: inline-block;
    color: var(--primary-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

nav a:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue-dark);
    transform: translateY(-1px);
}
/*Footer*/
.footer-links{color: var(--accent-pink)};
.footer-links:visited{color: var(--accent-blue)};

/* Responsive navigation */
@media (max-width: 768px) {
    nav {
        padding: 0.8rem 0.5rem;
    }
    
    nav a {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.1rem;
        display: inline-block;
    }
}