body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #111;
  color: #eee;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #000;
  border-bottom: 1px solid #333;
}

.header .logo {
  font-size: 22px;
  font-weight: bold;
  color: #d4af37;
}

.header nav a {
  margin-left: 20px;
  color: #eee;
  text-decoration: none;
  transition: 0.3s;
}

.header nav a:hover {
  color: #d4af37;
}

.hero {
  position: relative;
  height: 80vh;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-content h1 {
  font-size: 60px;
  color: #fff;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 22px;
  color: #ddd;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 30px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  background: #b8922c;
}

.presentation {
  padding: 80px 40px;
  text-align: center;
}

.presentation h2 {
  font-size: 40px;
  color: #d4af37;
}

.presentation p {
  max-width: 700px;
  margin: auto;
  margin-top: 20px;
  font-size: 18px;
  color: #ccc;
}

.gites {
  padding: 80px 40px;
}

.gites h2 {
  text-align: center;
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 50px;
}

.gite-card {
  display: flex;
  background: #1a1a1a;
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #333;
}

.gite-card img {
  width: 40%;
  object-fit: cover;
}

.gite-info {
  padding: 30px;
}

.gite-info h3 {
  font-size: 28px;
  color: #fff;
}

.gite-info p {
  margin-top: 10px;
  color: #ccc;
}

.piscine {
  display: flex;
  padding: 80px 40px;
  align-items: center;
}

.piscine img {
  width: 50%;
  border-radius: 10px;
}

.piscine-text {
  padding-left: 40px;
}

.piscine-text h2 {
  font-size: 40px;
  color: #d4af37;
}

.footer {
  text-align: center;
  padding: 30px;
  background: #000;
  color: #777;
  margin-top: 60px;
}
