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

body {
  font-family: 'Segoe UI', sans-serif;
}

h1 {
  font-weight: 500;
  margin-top: 100px;
  margin-bottom: 20px;
}

h2 {
  font-weight: 300;
  margin-bottom: 20px;
}

h3 {
  font-weight: 300;
  margin-bottom: 20px;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

section {
  margin-top: 20px;
  margin-bottom: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #333;
  color: white;
  position: fixed;
  width: 100%;
  height: 120px;
  top: 0;
  z-index: 1000;
  min-height: 60px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  z-index: 1200;
}

.nav-links {
  font-weight: bold;
  list-style: none;
  display: flex;
  gap: 30px;
  transition: none;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f9c846;
}

.hero-section {
  margin-top: 80px;
  width: 100%;
  height: calc(100vh - 80px);
  max-height: 1100px;
  display: flex;
  flex-direction: row;
}

.left-half {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #111;
  color: white;
  padding: 60px;
}

.quote {
  font-size: 3.2rem;
  line-height: 1.6;
  font-weight: 300;
  margin-top: auto;
}

.signature {
  font-size: 1.5rem;
  font-style: italic;
  color: #f9c846;
  margin-top: auto;
}

.right-half {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.facettes-section {
  background-color: white;
  padding: 80px 60px;
  text-align: center;
}

.section-subtext {
  font-size: 1.1rem;
  color: #555;
  margin: 0 auto 100px;
}

.facettes-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 0 auto;
}

.facette {
  background-color: white;
  padding: 30px 25px;
  text-align: left;
}

.facette p {
  display: flex;
  align-items: flex-start;
}

.facette-link {
  display: inline-block;
  margin-top: 10px;
  color: #ffbb00;
  text-decoration: none;
}

.facette-back-link {
  display: inline-block;
  margin-top: 20px;
  color: #ffbb00;
  text-decoration: none;
}

.facette-content-section {
  padding: 60px 40px;
}

.facette-content {

}

.icon {
  font-size: 1.3rem;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-section {
  padding: 80px 60px;
  text-align: center;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f9c846;
}

.submit-button {
  display: inline-block;
  background-color: #ffbb00;
  color: #111;
  border: none;
  padding: 18px 38px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #e0b739;
}

button[disabled],
button:disabled {
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

.map-section {
  background: #f9f9f9;
  padding: 80px 0 0 0;
  text-align: center;
}

.map-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  box-shadow: none;
}

.map-container iframe {
  width: 100vw;
  height: 400px;
  display: block;
  border: 0;
}

.map-btn {
  font-size: 1rem;
  padding: 11px 22px;
}

.footer {
  background: #333;
  color: white;
  padding: 100px 20px 50px 20px;
  text-align: center;
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social a {
  display: inline-block;
  color: white;
  margin: 0 10px;
}

.testimonials-section {
  padding: 20px 8vw 60px 8vw;
  text-align: center;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 2.6rem;
  color: #ffbb00;
  cursor: pointer;
  padding: 10px 18px;
  transition: color 0.2s, transform 0.2s;
  z-index: 5;
  user-select: none;
}

.carousel-btn:active {
  transform: scale(1.1);
  color: #111;
}

.testimonial {
  display: none;
  background: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  padding: 38px 24px 32px 24px;
  min-width: 280px;
  max-width: 540px;
  margin: 0 16px;
  text-align: left;
  flex: 1 1 100%;
  transition: box-shadow 0.2s;
}

.testimonial.active {
  display: block;
  animation: fadeTesti 0.5s;
}

@keyframes fadeTesti {
  from { opacity: 0; transform: translateY(16px);}
  to   { opacity: 1; transform: none;}
}

.testimonial-text {
  font-style: italic;
  color: #111;
  margin-bottom: 16px;
  line-height: 1.7;
}
.testimonial-meta {
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-univers {
  color: #ffbb00;
}
.testimonial-author {
  color: #888;
}

