@font-face {
  font-family: 'SF-Pro';
  src: url('../fonts/SF-Pro.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SF-Pro';
  src: url('../fonts/SF-Pro-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

:root {
  --blue: #005da7;
  --light-blue: #ecf1f5;
  --green: #049e66;
  --red: #e74c3c;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
}

p {
  font-size: 18px;
}

ul {
    font-size: 18px;
}



.bg-green {
    background: #72907a;
}

.hero {
  height: 600px;
  background-image: url("../images/villandry-castle.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  height: 100%;
  width: 100%;
  background: hsl(152deg 12% 49.02% / 95%);
}

.rotate-2 {
  transform: rotate(2deg);
}








.section-padding {
  padding: 80px 0;
}

.icon-box {
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-6px);
}

.experience-card img {
  height: 260px;
  object-fit: cover;
}

.quote-section {
  background: url("../images/jardins.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.quote-content {
  position: relative;
  z-index: 2;
}


.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

footer {
  background: #111;
  color: #aaa;
  padding: 40px 0;
}
