/* Font locale Amallicita */
@font-face {
  font-family: "Amallicita";
  src: url("../asset/Amallicita-8ff9adc9d0aa88f39eba089d4571938d.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "GillSansMTPro-Light", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
.blue { color: #00305C; }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  padding-top: 300px;
  flex: 1;
}
.hero-titles {
  margin-bottom: 30px;
}
.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;
  line-height: 65px;
}
.hero-main-title.special {
	line-height: 130px;
}

.hero-subtitle {
  font-family: "Amallicita", cursive;
  font-size: 80px;
  font-weight: 400;
  color: #ffd58e;
  font-style: normal;
  letter-spacing: 2px;
  line-height: 58px;
  text-align: right;
}

.building-btn {
  margin-top: auto;
  border-top: 1px solid #f0f0f0; 
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  padding: 12px 0;
  font-size: 24px;
  font-weight: 500;
  color: #00305C;
  font-family: "GillSansMTPro-Medium", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
}

.building-btn:hover {
  color: #FFF;
  background: #00305C;
}

.building-btn svg {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}
.building-btn svg.arrow-hover {
	display: none;
	transition: all 0.3s ease;
}
.building-btn:hover svg.arrow-hover {
	display: block;
}
.building-btn:hover svg.arrow {
	display: none;
}

.contact-btn {
  background: #00305C;
  border: none;
  color: white;
  padding: 15px 35px 10px;
  font-size: 30px;
  line-height: 30px;
  font-family: "GillSansMTPro-Light", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50px;
}
.contact-btn:hover {
  background: #1e2833;
  transform: translateY(-2px);
}
.contact-btn.message-sent {
	text-decoration: none;
	width: 300px;
	margin: 50px auto 0 auto;
	display: block;
	text-align: center;
}
.text {
	font-size: 30px;
    line-height: 1.3;
    margin-bottom: 15px;
    font-family: "GillSansMTPro-Light", sans-serif;
}
.text-smaller {
	font-size: 24px;
	line-height: 40px;
    margin-bottom: 15px;
    font-family: "GillSansMTPro-Light", sans-serif;
}
.text-justify {
	text-align: justify;
}

.bold {
	font-family: "GillSansMTPro-Medium", sans-serif !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px); /* petit décalage vers le bas */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.d-block { display: block; }
.margin-auto { margin: 0 auto; }
.mb-30 { margin-bottom: 30px; }

.text-container {
	margin-top: 50px;
	margin-bottom: 50px;
}
.text-container h2 {
	font-size: 26px;
	font-family: "GillSansMTPro-Medium", sans-serif;
	margin-top: 30px;
	margin-bottom: 15px;
}

.text-container h3 {
	font-size: 24px;
	font-family: "GillSansMTPro-Medium", sans-serif;
	margin-top: 30px;
	margin-bottom: 15px;
}

.text-container p {
	font-size: 20px;
	line-height: 28px;
    margin-bottom: 15px;
    font-family: "GillSansMTPro-Light", sans-serif;
}
.text-container a {
	color: #00305C;
	font-size: 20px;
	line-height: 28px;
    font-family: "GillSansMTPro-Light", sans-serif;
}
.text-container .bold {
	font-family: "GillSansMTPro-Medium", sans-serif !important;
}
.text-container ul {
	list-style: none;
	margin-bottom: 15px;
}
.text-container ul li {
	font-size: 20px;
	line-height: 28px;
}
