/* Importation de la police */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600&display=swap');

:root {
    --rose: #f4c2c2;
    --beige: #f8ede3;
    --brun: #8c5e58;
    --blanc: #ffffff;
    --noir: #2c2c2c;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

/* Style global */
body {
    background-color: var(--beige);
    color: var(--noir);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

/* Header et Navigation */
header {
    background: var(--rose);
    padding: 15px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--brun);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--noir);
    font-weight: 600;
    padding: 8px 15px;
    transition: 0.3s;
    border-radius: 5px;
}

.nav-links a:hover {
    background: var(--brun);
    color: var(--blanc);
}

/* Hero Section */
.hero {
    background: url('hero-image.jpg') no-repeat center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 36px;
    color: var(--brun);
}

.hero p {
    font-size: 18px;
    margin: 10px 0;
}

/* Boutons */
.btn {
    display: inline-block;
    background: var(--rose);
    color: var(--noir);
    padding: 10px 20px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: var(--brun);
    color: var(--blanc);
}

/* Contenu des pages */
.content {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--brun);
}

/* Cartes des chiens */
.dog-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.dog-card {
    background: var(--rose);
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.dog-card:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--rose);
    color: var(--brun);
    padding: 15px;
    margin-top: 30px;
}
/* Tableaux de tarifs */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.price-card {
    background: var(--rose);
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: scale(1.05);
}

/* Étapes du parcours */
.step-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.step {
    background: var(--beige);
    padding: 15px;
    border-left: 5px solid var(--brun);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* ----- Global ----- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}


.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.burger-menu {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* ----- Section Accueil ----- */
.hero {
    background: url('images/hero-background.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 15px;
    background: #ff8c00;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #e07b00;
}

/* ----- Section Features ----- */
.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background: white;
}

.feature {
    max-width: 300px;
    text-align: center;
}

.feature img {
    width: 100%;
    border-radius: 10px;
}


