/* ===== FONTS ===== */
@font-face {
  font-family: "Futura";
  src: url("../Fonts/futura/Futura\ Book\ font.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Lovelo Black";
  src: url("../Fonts/Lovelo_Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* ===== GLOBAL STYLES ===== */
html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  background-color: #f1efec;
  padding: 10px;
  text-align: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  font-family: "Lovelo Black", black;
}

.logo img {
  height: 50%;
  width: 25%;
}

/* ===== NAVIGATION ===== */
nav {
  display: flex;
  justify-content: center;
  background-color: white;
  padding: 10px 0;
  position: relative;
}

nav a {
  text-decoration: none;
  color: black;
  margin: 0 1%;
  font-size: 18px;
  font-weight: normal;
  font-family: "Futura";
}

/* ===== BUTTONS GLOBAUX ===== */
button {
  padding: 5px 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

.toggle-button {
  display: flex;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.toggle-option {
  padding: 10px 20px;
  border: none;
  outline: none;
  background-color: #eaeaea;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.toggle-option.active {
  background-color: #152040;
  color: white;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px; 
  height: 50px;
  background-color: white !important; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: transparent;
}

.whatsapp-btn i {
  font-size: 60px;
  color: #25d366;  
}


.whatsapp-btn img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}

/* ===== SCROLL TO TOP ===== */
#btnTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 10px 15px;
  font-size: 16px;
  background-color: #152040;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  display: none;
  transition: opacity 0.3s;
}

#btnTop:hover {
  background-color: #0056b3;
}

/* ===== FOOTER ===== */
footer {
  background-color: transparent;
  padding: 25px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-size: 16px;
  color: black;
  padding: 10px;
  margin: 5px;
}

.footer-logo img {
  width: 100px;
  height: auto;
}

footer p {
  margin: 5px 0;
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px 30px;
  border: 1px solid #888;
  width: 300px;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}
/* ===== HEADER RESPONSIVE ===== */
.fiche-header {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  background-color: #f1efec;
  padding: 0 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.back-arrow {
  cursor: pointer;
  position: absolute;
  left: 15px;
  font-size: 18px;
  color: #1e2a57;
  font-weight: bold;
  font-family: "Futura";
  transition: color 0.3s ease;
  z-index: 10;
}

.back-arrow:hover {
  color: #e0b78f;
}

.logo-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.logo-responsive {
  height: 55px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
}
