/* style.css */


/*
:root {
  --font-body: 'Helvetica Neue', Arial, sans-serif;
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-accent: #0055aa;
  --section-height: 100vh;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

header, footer {
  background-color: #f4f4f4;
  padding: 1rem;
  text-align: center;
}

nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 1rem;
}

nav a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: bold;
}

nav a:focus,
nav a:hover {
  text-decoration: underline;
  outline: 2px solid var(--color-accent);
}

.section {
  min-height: var(--section-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.section:nth-child(even) {
  background-color: #eef2f5;
}

h1, h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  max-width: 600px;
  text-align: center;
  font-size: 1.1rem;
}*/

/* Responsive design
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }

  .section {
    padding: 1.5rem;
  }

  h1, h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }
}*/

/* En-tête non-sticky avec logo à gauche */
/*
header {
  background-color: #f4f4f4;
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-link {
  display: inline-block;
  flex-shrink: 0;
}
*/
.logo {
  height: 50px;
  width: auto;
}

/*
.header-content {
  display: flex;
  flex-direction: column;
}

.header-content h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #111;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #0055aa;
  font-weight: bold;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
  outline: 2px solid transparent;
  outline-offset: 2px;
}


@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-content {
    align-items: flex-start;
  }

  .logo {
    height: 40px;
  }

  .header-content h1 {
    font-size: 1.4rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
}*/