/* public/css/home.css */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

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

/* 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;
}

/* Bouton Contact */
.contact-home {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-contact-btn {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 12px 20px 8px 20px;
  font-size: 20px;
  font-family: "GillSansMTPro-Light", sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  border-radius: 25px;
}

.hero-contact-btn:hover {
  background: white;
  color: #333;
}

/* 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);
  }
}

/* Excellence Section */
.excellence {
  padding: 60px 0;
  text-align: center;
}

.section-title {
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 25px;
  color: black;
  font-family: "GillSansMTPro-Bold", sans-serif;
}

.section-description {
  font-size: 24px;
  line-height: 1.4;
  max-width: 1100px;
  margin: 0 auto;
  font-family: "GillSansMTPro-Light", sans-serif;
  font-weight: 300;
}

/* Section Découvrez */
.discover-section {
  position: relative;
  height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.discover-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

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

.discover-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 0;
}

.discover-title {
  font-size: 45px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: "GillSansMTPro-Bold", sans-serif;
  text-transform: uppercase;
}

.discover-description {
  font-size: 23px;
  line-height: 1.4;
  font-family: "GillSansMTPro-Light", sans-serif;
  font-weight: 500;
  text-align: center;
  width: 80%;
  margin: 0 auto 40px auto;
  padding-top: 40px;
}

.discover-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 500;
  font-family: "GillSansMTPro-Light", sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.discover-btn:hover {
  background: white;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .discover-section {
    height: 500px;
  }

  .discover-content {
    margin-top: 60px;
  }

  .discover-title {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .discover-description {
    font-size: 16px;
  }

  .discover-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* Section Art de Vivre */
.art-vivre-section {
  padding: 120px 0;
}

.art-vivre-header {
  text-align: center;
  margin-bottom: 80px;
}

.art-vivre-title {
  font-size: 36px;
  margin-bottom: 0;
  font-family: "GillSansMTPro-Medium", sans-serif;
}

.art-vivre-subtitle {
  font-size: 18px;
  font-family: "GillSansMTPro-Light", sans-serif;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.art-vivre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.art-vivre-features {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: solid 2px #fff8f6;
  padding-left: 20px;
  gap: 20px;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 4px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 19px;
  color: #333;
  margin-bottom: 12px;
  font-family: "GillSansMTPro-Medium", sans-serif;
}

.feature-description {
  font-size: 17px;
  line-height: 1.6;
  color: #1A1A1A;
  font-family: "GillSansMTPro-Light", sans-serif;
  font-weight: 300;
  width: 85%;
}

.art-vivre-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.art-vivre-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section Map */
.map-section {
  padding: 0;
  margin: 0;
}
.map-container {
  width: 100%;

}
.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;  
  object-position: 50% 50%;
  display: block;
}

@media (max-width: 768px) {
  .map-container { 
	height: 45vh;
	overflow: hidden;
  }
  .map-image { 
	object-position: 50% 45%;
  } 
}

/* Responsive */
@media (max-width: 1024px) {
  .art-vivre-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .art-vivre-image {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .art-vivre-section {
    padding: 80px 0 0;
  }

  .art-vivre-header {
    margin-bottom: 60px;
  }

  .art-vivre-title {
    font-size: 28px;
  }

  .art-vivre-subtitle {
    font-size: 16px;
  }

  .art-vivre-features {
    gap: 40px;
  }

  .feature-item {
    gap: 16px;
    border-left: none;
    padding-left: 0;
  }

  .feature-title {
    font-size: 16px;
  }

  .feature-description {
    font-size: 14px;
  }

  .art-vivre-image {
    height: 300px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-main-title {
    font-size: 80px;
  }

  .svg-title {
	width: 400px;
  }
  
  .hero-subtitle {
    font-size: 56px;
    line-height: 48px;
  }
}
@media (max-width: 992px){
	.svg-title {
        width: 300px;
    }
    .hero-subtitle {
        font-size: 46px;
        line-height: 30px;
    }
}

@media (max-width: 768px) {
  .hero-main-title {
    font-size: 60px;
    line-height: 25px;
    letter-spacing: 4px;
  }
  
  .svg-title {
	width: 250px;
  }

  .hero-subtitle {
    font-size: 34px;
    margin-left: 10px;
    line-height: 30px;
  }

  .container {
    padding: 0 20px;
  }

  .scroll-arrow {
    bottom: 20px;
  }
  .section-description {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 50px;
    letter-spacing: 2px;
  }
  .svg-title {
	width: 240px;
  }
  .hero-subtitle {
    font-size: 32px;
  }

  .hero-contact-btn {
    padding: 12px 25px;
    font-size: 12px;
  }

  .scroll-arrow {
    bottom: 15px;
  }

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