/* 🐾 Arrière-plan du site – logo Camarguais */
body {
    background: linear-gradient(rgba(255, 244, 215, 0.9), rgba(255, 244, 215, 0.9)),
                url("images/logo-camarguais.png") center/cover no-repeat fixed;
    margin:0;
    font-family: "Georgia", serif;
}

/* ==================== HEADER CAMARGUE FINAL ==================== */
.header-site{
    background:#e6cf9b;               /* sable clair */
    padding:25px 0;
    border-bottom:3px solid #7b5a33;   /* brun taureau Camargue */
    position:sticky;
    top:0;
    z-index:1000;
    text-align:center;
}

/* Ligne du haut = logos + titre */
.header-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:90%;
    margin:auto;
}

/* Logos */
.logo-header{
    height:120px;
}

/* Titre central */
.titre-zone h1{
    font-size:2.6rem;
    font-weight:800;
    color:#4a3b28;
    margin:5px 0;
}

.slogan{
    font-size:1.6rem;
    font-weight:600;
    color:#4a3b28;
}

/* ==================== MENU ==================== */
.menu{
    margin-top:25px;
    background:#463723;
    padding:18px;
}

.menu a{
    color:#e6cf9b;
    margin:0 25px;
    font-size:1.3rem;
    text-decoration:none;
    font-weight:bold;
}

.menu a:hover{
    color:white;
}

/* ==================== PAGE ACCUEIL ==================== */

.hero {
    background:url('images/chat_camargue.jpg') center/cover no-repeat;
    height:350px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:2.4em;
    text-shadow:0 0 15px black;
}

/* Présentation */
.section {
    text-align:center;
    padding:45px;
}

/* Chats adoptables */
.cats-container {
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
}

.cat-card {
    background:white;
    width:260px;
    padding:15px;
    border:3px solid #d9c9a5;
    border-radius:8px;
    box-shadow:0 0 10px rgba(80,60,40,0.2);
    transition:.3s;
}
.cat-card:hover { transform: scale(1.04); }

.cat-card img {
    width:100%;
    border-radius:5px;
}

/* ==================== SECTION ACTUALITÉS (Étape 3 ajoutée) ==================== */

.actus{
    padding:60px 10px;
    text-align:center;
}

.actus h2{
    font-size:2.4rem;
    color:#4a3b28;
    margin-bottom:30px;
    font-weight:bold;
}

.news{
    background:rgba(255,255,255,0.95);
    width:80%;
    margin:15px auto;
    padding:22px;
    border-left:8px solid #7b5a33;
    border-radius:8px;
    max-width:900px;
    text-align:left;
}

.news h3{
    margin:0;
    font-size:1.6rem;
    color:#3b2d1e;
    font-weight:bold;
}

.date{
    font-style:italic;
    color:#7b5a33;
    font-size:0.9rem;
    margin-bottom:12px;
}

.btn-actus{
    background:#7b5a33;
    padding:10px 25px;
    color:white;
    font-weight:bold;
    text-decoration:none;
    border-radius:6px;
}
.btn-actus:hover{
    background:#4c351f;
}

/* ==================== Footer ==================== */
footer{
    background:#4a3b28;
    color:white;
    text-align:center;
    padding:15px;
    margin-top:50px;
}
/* Bouton Connexion menu */
.btn-login{
    background:#7b5a33;
    padding:8px 15px;
    border-radius:6px;
    font-weight:bold;
    color:white !important;
    margin-left:20px;
    transition:0.3s;
}

.btn-login:hover{
    background:#4c351f;
    color:white;
}
/* Formulaire inscription */
.form-container{
    width:70%;
    max-width:500px;
    background:rgba(255,255,255,0.9);
    margin:50px auto;
    padding:25px;
    border-radius:8px;
    box-shadow:0 0 10px rgba(0,0,0,0.1);
    text-align:center;
}

.form-register input{
    width:90%;
    padding:12px;
    margin:10px 0;
    border-radius:6px;
    border:2px solid #c9b18a;
}

.form-register button{
    background:#7b5a33;
    color:white;
    padding:12px 25px;
    border:none;
    border-radius:6px;
    margin-top:10px;
    cursor:pointer;
    font-size:1.1rem;
}

.form-register button:hover{
    background:#4c351f;
}

/* messages */
.err{color:#b30000;font-weight:bold;}
.success{color:#0a7a34;font-weight:bold;}
