:root {
  --primary-color: #f7f5f0;
  --secondary-color: #e8e3d9;
  --accent-color: #8a7a6b;
  --text-main: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: #3d4048;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 2px solid #3d4048;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn:hover {
  background-color: transparent;
  color: #3d4048;
}

/* Navbar */
.navbar {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 20px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: #3d4048;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-link {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
  color: #3d4048;
}

.nav-link.active {
  color: #3d4048;
}

.nav-link:hover {
  color: #3d4048;
  opacity: 0.8;
}

.btn-nav {
  padding: 6px 18px;
  font-size: 14px;
}

.btn-ontario {
  background-color: #d66829;
  color: var(--white);
  border: 2px solid #d66829;
}

.btn-ontario:hover {
  background-color: var(--white);
  color: #d66829;
  border: 2px solid #d66829;
}

/* Hero Section */
.hero {
  position: relative;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: url('https://dahbiailloul.com/df_media/W1siZiIsIjIwMjUvMDQvMTEvMTUvNDYvMTYvYWM2MWZlNTItOWFmOS00NDI4LTg1YzUtOWNmYTNmNjVjNzM5L2dlbmVyYWw2LmpwZyJdLFsicCIsInRodW1iIiwiMjAwMHgxNTAwXHUwMDNlIl1d/general6.jpg?sha=3dec6abe9a7e917f') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
}

/* Section: Intro */
.section-intro {
  background-color: #f1f1f1;
  padding: 20px 20px;
  text-align: center;
}

.section-intro h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 6px;
}

.section-intro h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 12px;
}

.section-intro h4 {
  font-size: 36px;
  font-weight: 400;
  color: #3d4048;
  margin-bottom: 16px;
}

/* Section: Pourquoi Consulter */
.section-consult {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.section-consult h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 40px;
}

.consult-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-main);
}

.consult-text p {
  margin-bottom: 20px;
}

/* Section: Split Layout */
.section-split {
  display: flex;
  flex-wrap: wrap;
  background-color: #ffffff;
}

.split-image {
  flex: 1;
  min-width: 300px;
  min-height: 400px;
  background: url('leftimage.jpg') center/cover no-repeat;
}

.split-content {
  flex: 1;
  min-width: 300px;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: #3d4048;
  margin-bottom: 20px;
}

.split-content p {
  font-size: 18px;
  margin-bottom: 40px;
}

/* Section: Staff */
.section-staff {
  background-color: #f1f1f1;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
}

.staff-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1000px;
  align-items: center;
}

.staff-info {
  flex: 1;
  min-width: 300px;
}

.staff-info h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 5px;
}

.staff-info h5 {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 30px;
}

.staff-info p {
  font-size: 16px;
  margin-bottom: 15px;
}

.staff-image {
  flex: 0 0 300px;
}

.staff-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  color: var(--text-main);
}

.footer-top {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-bottom {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .section-split { flex-direction: column; }
  .staff-container { flex-direction: column; text-align: center; }
  .footer-top { flex-direction: column; text-align: center; }
}
