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

:root {
  --accent: #4A4A3C; /* Taupe chaud */
  --text: #333333;
  --bg: #ffffff;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  z-index: 1000;
}

header img {
  max-height: 60px;
}

nav a {
  color: var(--text);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

nav a:hover {
  color: var(--accent);
}

/* Bouton LinkedIn */
header .linkedin {
  color: var(--accent);
  font-weight: bold;
}

/* Bannière */
.hero {
  background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Sections */
main {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

h1, h2, h3 {
  color: var(--accent);
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}

/* Boutons */
.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #3A3A2C;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}

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