body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f9f9f9;
    color: #333;
}

header {
    background: #ff914d;
    color: white;
    padding: 15px;
    text-align: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav a:hover {
  color: #F54927;
}

main {
    padding: 20px;
    max-width: 900px;
    margin: auto;
}

h1 {
    color: #ffffff
}

h2 {
    color: #ff914d
}



/* --- Section principale de la landing page --- */
.landing {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left;
  line-height: 1.6;
}

.landing h1, 
.landing h2 {
  color: #333;
  text-align: center;
}

.landing img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

/* --- Bouton Call to Action --- */
.cta-button {
  display: inline-block;
  background-color: #ff914d; /* orange chaleureux */
  color: white;
  padding: 14px 28px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #ff7a00;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transform: translateY(-3px);
  animation: bounce 0.4s ease;
}

.cta-button:active {
  background-color: #e96e00;
  transform: translateY(0);
}

/* --- Animation du bouton --- */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* --- Message de confirmation avant redirection --- */
.cta-message {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: #ff914d;
  color: white;
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 1.1em;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 9999;
}

.cta-message.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}





footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

button {
    background: #ff914d;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #e76b24;
}
footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1 1 250px;
  max-width: 350px;
}

.footer-section h3 {
  color: #ffcc66;
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 0.9em;
  color: #aaa;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-section {
    max-width: 100%;
    text-align: center;
  }

  .footer-section ul li {
    margin: 8px 0;
  }
}
