/* RESET SIMPLE */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #5a4a3f; /* plus doux et élégant */
    background-color: #ffffff;
}

/* HEADER */
header {
    background: #333;
    color: white;
    text-align: left;
    padding: 20px;
}

/* HEADER FLEX */
.header {
    display: flex;
    align-items: center;      /* centre verticalement sur la ligne */
    justify-content: left;  /* centre horizontalement dans le header */
    gap: 50px;                /* espace entre logo et titre */
    padding: 20px;
	background: #fff;
}

/* Logo et titre */
.logo {
    height: 200px;
}

h1 {
    font-size: 75px;
    color: #A5835E;
    margin: 5px;
}
h6 {
	font-size: 75px;
    color: #A5835E;
    margin: 5px;
}
h7 {
	font-size: 75px;
    color: #A5835E;
    margin: 5px;
}

/* MOBILE */
@media (max-width: 768px) 
{
    .header {
        flex-direction: column;  /* empile logo au-dessus du titre */
		gap: 5px;
    }

    .logo {
        height: 150px;
    }

    h1 {
        font-size: 35px;
    }
	h2 {
    color: #A5835E;
    font-size: 80px;
	}

	h3 {
    color: #A5835E;
	}
}


/* MENU */
.navbar {
    background: #f39184;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
}
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    margin-left: 20px;
}

.menu a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    text-align: center;
}

.menu a:hover {
    background: #D95251;
}

/* BOUTON HAMBURGER */
.menu-toggle {
    display: none; /* caché sur PC */
    font-size: 28px;
    cursor: pointer;
    color: white;
}
.menu-toggle.open .hamburger {
    transform: rotate(180deg);
    transition: transform 0.3s;
}
/* STRUCTURE */
.container {
    display: flex;
    padding: 20px;
}

main {
    flex: 3;
    padding: 20px;
}

aside {
    flex: 1;
    background: #f2f2f2;
    padding: 20px;
}

/* FOOTER */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
}

/* MEDIA QUERIES POUR SMARTPHONE */
@media (max-width: 768px) {

   
    h2 {
        font-size: 25px;
    }
    h3 {
        font-size: 18px;
    }
   

    /* HEADER ET CONTENU */
    .container {
        flex-direction: column;
    }

    aside {
        margin-top: 20px;
    }

    /* MENU RESPONSIVE */
    .menu {
        flex-direction: column;
        display: none; /* caché par défaut sur mobile */
        width: 100%;
    }

    .menu li {
        width: 100%;
        margin: 0;
    }

    .menu a {
        padding: 12px 20px;
        border-top: 1px solid #444;
    }

    .menu-toggle {
        display: block; /* visible sur mobile */
        align-self: flex-end;
    }

}







/* Titre principal */
.main-title {
    text-align: center;
    font-size: 18pt;
    color: #FFF;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
	background-color:black;
}
.main-title2 {
    text-align: center;
    font-size: 18pt;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
	background-color:#F39184;
}

/* Container principal : flex wrap pour plusieurs blocs */
.container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 20px;
}

/* Chaque bloc */
.card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card h3 {
    margin: 15px 0;
    color: #A5835E;
    font-family: 'Poppins', sans-serif;
	font-size : 12pt;
}

@media (max-width: 600px) {
    .card {
        width: 90%;
    }
}
.number-input {
    display: flex;
    align-items: center;
    justify-content: center; /* centre les boutons + input entre eux */
    margin: 10px auto; /* centre le bloc horizontalement */
}

.number-input input {
    width: 60px;
    text-align: center;
    font-size: 16px;
}

.number-input button {
    width: 35px;
    height: 35px;
    border: none;
    background-color: #F39184;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

.number-input button:hover {
    background-color: #c00000;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.message {
    margin-top: 10px;
    font-size: 14px;
}
.card form {
    display: flex;
    flex-direction: column;
    align-items: center; /* centre tous les éléments */
	gap:10px;
	margin-top:15px;
	margin-bottom:10px;
}
.btn-panier {
    background: linear-gradient(135deg, #F39184, #c00000);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover (PC) */
.btn-panier:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	background: linear-gradient(135deg, #c00000, #c00000);
}

/* Click (effet pression) */
.btn-panier:active {
    transform: scale(0.97);
}

/* Mobile : plus gros */
@media (max-width: 600px) {
    .btn-panier {
        font-size: 18px;
        padding: 15px;
    }
}
.btn-panier:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}










.btn-panier2 {
    background: linear-gradient(135deg, #a5835e, #f39184);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover (PC) */
.btn-panier2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	background: linear-gradient(135deg, #f39184, #f39184);
}

/* Click (effet pression) */
.btn-panier2:active {
    transform: scale(0.97);
}

/* Mobile : plus gros */
@media (max-width: 600px) {
    .btn-panier2 {
        font-size: 18px;
        padding: 15px;
    }
}
.btn-panier2:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}


.links2:link {color: #f39184;}
.links2:visited {color: #f39184;}
.links2:hover {color: red;}


.btn-panier3 {
    background: linear-gradient(135deg, #a5835e, #f39184);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Hover (PC) */
.btn-panier3:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
	background: linear-gradient(135deg, #f39184, #f39184);
}

/* Click (effet pression) */
.btn-panier3:active {
    transform: scale(0.97);
}

/* Mobile : plus gros */
@media (max-width: 600px) {
    .btn-panier3 {
        font-size: 18px;
        padding: 15px;
    }
}
.btn-panier3:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

