﻿/* Styles généraux */
body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    margin: 0;
    padding: 0;
    color: #333;
}
{
  box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
/* En-tête */
header {
    background: #8b0000;
    color: white;
    padding: 20px;
    font-size: 1.5em;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Sections */
main {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Image des lamingtons */
.lamington-img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

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

/* Section Avantages */
.grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.card {
    background: #ffe4e1;
    padding: 15px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

/* Pied de page */
footer {
    background: #8b0000;
    color: white;
    padding: 10px;
    margin-top: 20px;
}
.bandeau-entreprise {
    background-color: #8b0000;
    color:  #ffeded;
    text-align: center;
    padding: 15px;
    font-size: 1.2em;
    border-top: 2px solid #8b0000;
}

/* Espacement entre les témoignages */
.temoignage {
    background: #ffe4e1;
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 700px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.temoignage:hover {
    transform: scale(1.03);
}

/* Citation stylisée */
blockquote {
    font-style: italic;
    font-size: 1.2em;
    color: #555;
    border-left: 5px solid #8b0000;
    padding-left: 15px;
}

/* Sections SEO */
.seo-section {
    background: #fffaf0;
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); }


/* Navigation */
header nav ul.menu {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: #8b0000;
    margin: 0;
    justify-content: center;
}

header nav ul.menu li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

header h1 {
    margin: 10px 0;
    color: #ffc0cb;
    font-size: 2em;
}

/* Boutons */
.btn {
    background-color: #8b0000;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
    margin: 10px;
}

/* Tableau*/
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  background-color: white;
}

thead {
  background-color: #8b0000;
  color: white;
}

th, td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Pied de page */
footer {
    background-color: #8b0000;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

