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

header
{
    background: #002244;
    color: white;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    
}
.header-container
{
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    text-align: left;
}

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

.site-title
{
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.tagline
{
    font-size: 1rem;
    margin: 0;
    opacity: 0.85;
}

nav
{
    background: #fff;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a
{
    margin: 0 1rem;
    color: #002244;
    text-decoration: none;
    font-weight: 600;
}

section
{
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h1
{
    color: white;
}

h2
{
    color: #002244;;
}

.center
{
    text-align: center;
}

.grid
{
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
}

.card
{
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.card a
{
    text-decoration: none;
    color: inherit; 
    transition: color 0.3s ease;
}

/* cible uniquement les cards qui contiennent un lien */
.card:has(a):hover
{
    background-color: #002244;
    color: white;
    
}

.profil
{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.profil img
{
    width: 180px;
    border-radius: 50px;
    object-fit: cover;
}

.profil-text
{
    flex: 1;
    text-align: justify;
}

.bouton
{
    display: inline-block;
    background-color: #003366;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.container
{
    display: flex;  /* aligne les colonnes horizontalement */
    width: 2000px;
    margin: auto;
    /*justify-content: space-between;  espace égal entre les colonnes */
    gap: 20px; /* espace entre les colonnes */
}

.colonne
{
    flex: 1;  /* chaque colonne prend la même largeur */
    padding: 20px;
    background-color: #f0f0f0;
    border: 1px solid black;
    border-radius: 8px;
    text-align: center; /* centrer le texte à l'intérieur */
}

.image-bapteme
{
    width: 400px;

}

.coffret-cadeau
{
    width: 1500px;
    align-items: center;
    margin: auto;
}

.conclusion
{
    width: 1500px;
    align-items: center;
    margin: auto;
    padding: 2rem;
}

footer {
    width: 100%;
    background: #002244;
    color: white;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.footer-container {
    max-width: 100%;   /* même max-width que la section */
    margin: 0 auto;      /* centre horizontalement */
    text-align: center;
}


footer p
{
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

 a.footer,
a.footer:link,
a.footer:visited,
a.footer:active,
a.footer:focus 
 {
    color: white !important;
    font-size: 0.9rem;
    text-decoration: none;
 }

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

button
{
    background-color: #003366;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    margin-top: 1.5rem;
    cursor: pointer;
    font-size: 1rem;
}

