/* Style général */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  font-size: 16px;
  line-height: 1.6;
  background-color: #f4f4f4;
}

header {
  background-color: #333;
  color: #fff;
  padding: 1rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo h1 {
  margin: 0;
}

ul.menu {
  list-style-type: none;
  display: flex;
}

ul.menu li {
  margin-left: 20px;
}

ul.menu li a {
  text-decoration: none;
  color: #fff;
  padding: 0.5rem 1rem;
}

ul.menu li a:hover {
  background-color: #555;
  border-radius: 5px;
}

/* Hero section */
.hero {
  /* background: url('hero-image.jpg') no-repeat center center/cover; */
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #c4bebe;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  background-color: #ff6347;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background-color: #ff4500;
}

/* Services */
.services {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

.services h2 {
  margin-bottom: 2rem;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background-color: #f9f9f9;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  flex: 1;
}

.service-card h3 {
  margin-bottom: 10px;
}

/* À propos */
.apropos {
  padding: 2rem;
  background-color: #f4f4f4;
  text-align: center;
}

.apropos h2 {
  margin-bottom: 1rem;
}

.apropos p {
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}

/* Contact */
.contact {
  padding: 2rem;
  background-color: #fff;
  text-align: center;
}

.contact h2 {
  margin-bottom: 1.5rem;
}

form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
}

input, textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button[type="submit"] {
  background-color: #ff6347;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin-top: 1rem;
}

button[type="submit"]:hover {
  background-color: #ff4500;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #333;
  color: #fff;
  /* position: fixed; */
  width: 100%;
  bottom: 0;
}
