/* Styles pour le cocon sémantique - Plan évacuation incendie */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Variables */
:root {
    --primary-color: #CF543A;
    --text-light: #F5F5F5;
    --text-white: #FFFFFF;
    --text-dark: #333333;
}

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

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 76px; /* Pour compenser le header fixe */
}

/* Typographie */
h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

/* Header et Navigation */
.navbar {
    background-color: var(--primary-color) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand,
.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-family: 'Montserrat', Arial, sans-serif;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-white) !important;
}

.navbar-toggler {
    border-color: var(--text-light);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(245, 245, 245, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
}

/* Footer */
footer {
    background-color: #333;
    color: var(--text-light);
    padding: 2rem 0;
    margin-top: 3rem;
    font-family: 'Montserrat', Arial, sans-serif;
}

footer a {
    color: var(--text-light);
    text-decoration: none;
}

footer a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

/* Tableaux */
table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

table th,
table td {
    padding: 0.75rem;
    border: 1px solid #ddd;
    text-align: left;
}

table th {
    background-color: var(--primary-color);
    color: var(--text-white);
    font-weight: 700;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Listes */
ul, ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

li {
    margin: 0.5rem 0;
}

/* Liens */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: #a83e2a;
    text-decoration: underline;
}

/* Sections */
section {
    margin: 2rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    body {
        padding-top: 66px;
    }
}


