
/* style.css */

body {

    font-family: 'Arial', sans-serif;

    margin: 0;

    padding: 0;

    background-color: #f0f8ff; /* Light blue background */

    color: #333;

}

h1, h2 {

    color: #0056b3; /* Dark blue color for titles */

}

h1 {

    font-size: 3em;

    text-align: center;

    margin-top: 50px;

}

h2 {

    font-size: 1.5em;

    text-align: center;

    margin-top: 20px;

}

a {

    text-decoration: none;

    color: #0056b3; /* Same color as titles */

    font-weight: bold;

}

a:hover {

    text-decoration: underline;

}

li {

    list-style: none;

}

ul {

    padding: 0;

}

li a {

    display: inline-block;

    margin: 10px;

    padding: 15px;

    background-color: #ffffff; /* White background for links */

    border-radius: 5px;

    text-align: center;

}

li a:hover {

    background-color: #f0f8ff; /* Light blue background on hover */

}

ul {

    text-align: center;

    margin: 50px auto;

    max-width: 800px;

}

footer {

    text-align: center;

    margin-top: 50px;

    font-size: 0.8em;

    color: #666;

}

.buttons-container {

    display: flex;

    justify-content: center;

}

.header {
  background: #ffffff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  /* remplacer par votre logo / image si besoin */
}

.header nav a {
  margin-left: 20px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.header nav a.active {
  color: #000;
  border-bottom: 2px solid #333;
  padding-bottom: 4px;
}



/* Hero / Page header */
.hero, .page-header {
  padding: 80px 40px;
  text-align: center;
  background: #ffffff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background-color: #0073b1; /* couleur CTA — ajustable selon branding */
  color: white;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
}

.btn:hover {
  background-color: #005a8c;
}

/* Sections de contenu */
.section {
  padding: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  padding: 24px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.list .item {
  background: white;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.list .item:last-child {
  border-bottom: none;
}

/* Formulaire contact */
.form-section {
  padding: 40px;
  background: white;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section input,
.form-section textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.form-section button {
  padding: 14px;
  background: #0073b1;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.form-section button:hover {
  background: #005a8c;
}

/* Footer */
.footer {
  background: #ffffff;
  text-align: center;
  padding: 20px 40px;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .header nav {
    margin-top: 10px;
  }
  .hero, .page-header {
    padding: 60px 20px;
  }
}


