/* styles.css */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #333;
}

/* Header */
.header {
  background-color: #f5c3c3;
  padding: 1rem 0;
  
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  height: 90px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Bannière */
.hero-banner img {
  width: 100%;
  height: 25vh;
  object-fit: cover;
}

/* Contenu principal */
.content-container {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.text-content h1 {
  font-size: 1.8rem;
  color: #444;
  margin-bottom: 1rem;
}

.text-content p {
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Recettes */
.recipes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.recipe-card {
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
}

.recipe-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.footer h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}



Page2.html

body {
  font-family: sans-serif;
  background-color: #f8f0e3;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.avis-clients {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 400px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

.etoiles {
  color: #ffc107;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.avis {
  background-color: #f2f2f2;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: left;
}

.nom {
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
}

.commentaire {
  font-style: normal;
  color: #666;
  font-size: 0.9em;
  line-height: 1.4em;
}

.guillemet-ouvr,
.guillemet-ferm {
  font-size: 1.5em;
  color: #aaa;
}

.site {
  color: #777;
  font-style: italic;
}


.footer {
  background-color: #34495e; /* Couleur de fond bleu foncé */
  color: #fff; /* Couleur du texte en blanc */
  padding: 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-links, .footer-newsletter, .footer-logo {
  margin-bottom: 20px;
}

.footer-links h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

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

.footer-links li a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.footer-newsletter h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.footer-newsletter p {
  margin-bottom: 10px;
}

.footer-newsletter input[type="email"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: none;
}

.footer-newsletter label {
  display: block;
  margin-bottom: 10px;
}

.footer-newsletter button {
  background-color: #f39c12; /* Couleur orange pour le bouton */
  color: #fff;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}

.footer-logo img {
  max-width: 150px;
}

.footer-social {
  margin-top: 10px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
}

.footer-social img {
  width: 30px;
  height: 30px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-payment img {
  width: 50px;
}
