:root {
    --bordeaux: #660F01;
    --beige-clair: #FCFAFA;
    --texte: #2d2d2d;
    --gris: #888;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset de base */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--beige-clair);
    color: var(--texte);
    overflow-x: hidden;
}

h1, h2, h3 { 
    font-family: 'Playfair Display', serif; 
}

/* --- NAVIGATION --- */
nav {
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.logo { 
    display: flex;
    align-items: center;
    gap: 12px; /* Espace entre le texte et le logo */
    font-size: 1.1rem; 
    font-weight: 700; 
    color: var(--bordeaux); 
    text-decoration: none; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
}

.logo-k {
    font-size: 1.3rem; 
}

.logo-img {
    height: 50px; /* Taille du logo (ajuste entre 40 et 60 selon tes goûts) */
    width: auto;
    object-fit: contain;
    /* On retire les éventuelles marges par défaut */
    display: block; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--texte); 
    margin-left: 25px; 
    font-size: 0.85rem; 
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover { 
    color: var(--bordeaux); 
}

.admin-link {
    font-weight: 600;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: white;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 40px;
}

.hero-text {
    padding-right: 50px;
}

.hero-text h1 { 
    font-size: clamp(2.5rem, 4vw, 4rem); 
    line-height: 1.1;
    margin-bottom: 1.5rem; 
    color: var(--bordeaux);
}

.hero-text p { 
    max-width: 600px; 
    margin-bottom: 2rem; 
    color: var(--gris); 
    font-size: 1.1rem;
}

.hero-image {
    height: 600px;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

/* --- BOUTONS --- */
.btn-main {
    display: inline-block;
    padding: 15px 35px;
    background: var(--bordeaux);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition);
}

.btn-main:hover { 
    opacity: 0.9; 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(102, 15, 1, 0.2);
}

/* --- GRILLE DE PRODUITS --- */
.container { 
    padding: 80px 5%; 
}

.section-title { 
    text-align: center; 
    margin-bottom: 60px; 
    font-size: 2.2rem; 
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 50px;
}

.product-card {
    background: transparent;
    text-align: left;
}

.img-container {
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 20px;
}

.product-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.product-card h3 { 
    font-size: 1.2rem; 
    margin-bottom: 5px; 
    font-weight: 400; 
}

.price { 
    color: var(--gris); 
    font-size: 0.9rem; 
    display: block; 
    margin-bottom: 15px; 
}

.btn-view {
    text-decoration: none;
    color: var(--texte);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--bordeaux);
    padding-bottom: 5px;
    transition: var(--transition);
}

.btn-view:hover { 
    color: var(--bordeaux); 
}

/* --- FOOTER --- */
footer { 
    padding: 60px; 
    text-align: center; 
    font-size: 0.8rem; 
    color: var(--gris); 
    border-top: 1px solid #eee; 
    background: white;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 50px;
    }
    .hero-text {
        padding-right: 0;
        text-align: center;
        order: 2;
    }
    .hero-image {
        height: 400px;
        order: 1;
    }
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }
    .nav-links {
        margin-left: 0;
    }
    .nav-links a {
        margin: 0 10px;
    }
}