/* HERO SECTION avec Header en overlay */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-main-title {
  font-family: "GillSansMTPro-Bold", sans-serif;
  font-size: 120px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0;
  color: white;
  text-transform: uppercase;
}


/* Background Image */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.445);
  z-index: 2;
}

.svg-title {
	width: 550px;
	height: auto;
}

/* Scroll Arrow - tout en bas de la section */
.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.scroll-arrow:hover {
  opacity: 0.8;
}

.scroll-arrow img {
  width: auto;
  height: 40px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.properties-content {
	margin-top: 50px;
}
.properties-content .title {
	font-family: "GillSansMTPro-Light", sans-serif;
	font-size: 50px;
	line-height: 65px;
	text-align: center;
	margin: 30px auto 30px auto;
}

/* Responsive */
@media (max-width: 1024px) {

  .svg-title {
	width: 400px;
  }
}
@media (max-width: 992px){
	.svg-title {
        width: 300px;
    }
    .hero-main-title {
	  font-size: 60px;
      letter-spacing: 4px;
	  line-height: 70px;
	}
}

@media (max-width: 768px) {
  
  .svg-title {
	width: 250px;
  }

  .scroll-arrow {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .svg-title {
	width: 240px;
  }

  .scroll-arrow {
    bottom: 15px;
  }

  .scroll-arrow img {
    height: 30px;
  }
}

