* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Lato', sans-serif;
  background: #fafafa;
  color: #121212;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  z-index: 1000;
}

.logo img {
  height: 40px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: #121212;
  font-weight: 500;
}

nav a:hover {
  color: #b1985f;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #121212;
  border-radius: 2px;
}

/* Responsive nav */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 60px;
    right: 5%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 20px;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  nav ul {
    flex-direction: column;
    gap: 16px;
  }

  nav.show {
    display: flex;
  }

  .burger {
    display: flex;
  }
}

/* MAIN CONTENT */
main {
  padding: 80px 5% 60px;
  max-width: 900px;
  margin: auto;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

section {
  margin-bottom: 40px;
}

p {
  font-size: 1em;
  line-height: 1.6;
  color: #333;
}

/* FOOTER */
footer {
  background-color: #111;
  color: #f0f0f0;
  padding: 2rem 1rem 1rem;
  font-family: 'Lato', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 250px;
  margin: 1rem;
}

.footer-col h3, .footer-col h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}
footer {
  background-color: #111;
  color: #f0f0f0;
  padding: 2rem 1rem 1rem;
  font-family: 'Lato', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 250px;
  margin: 1rem;
}

.footer-col h3, .footer-col h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}
.footer-links-legaux a {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-legaux a:hover {
  color: #fff;
}



.dev-link {
  color: #b1985f;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s, text-decoration 0.3s;
}

.dev-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.external-link-icon {
  font-size: 0.75em;
  margin-left: 4px;
  vertical-align: top;
}