/* Style global */
html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #feffd3;
    /* évite les bandes blanches */
    min-height: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #feffd3;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: top 0.3s;
}

header.hide {
    top: -100px;
}

header h1 {
    margin: 0;
    font-size: 24px;
    color: #882b39;
    font-family: 'Roboto';
    font-weight: 100;
    text-align: center;
}

nav {
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: #333;
    margin: 0 12px;
    font-size: 14px;
    letter-spacing: 1px;
}

nav a.selected {
    border-bottom: 2px solid black;
    padding-bottom: 2px;
}

/* Image en dessous du header */
.fond-banner {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.fond-banner img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Main */
main {
    background-color: #feffd3;
    padding-top: 100px;
    /* laisse la place pour le header */
    padding-bottom: 80px;
    /* laisse la place pour le footer */
    min-height: calc(100vh - 180px);
    /* couvre tout l’écran */
}

/* Conteneur des produits */
.product-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

main img {
    border-radius: 10px;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #882b39;
    color: white;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h2 {
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-left h1 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-left a {
    color: white;
    text-decoration: underline;
}

.product-card {
    background-color: #feffd3;
    padding: 16px;
    border-radius: 0px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.product-title {
    font-size: 18px;
    margin: 12px 0 6px;
    color: #882b39;
    font-family: 'Helvetica Neue', sans-serif;
}

.product-price {
    font-size: 16px;
    color: #333;
}

/* Texte a propos */
.intro-text {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    color: #401c03;
    font-family: 'Georgia', serif;
}

/* Page "Votre Création" */
.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    /* ajustable */
    padding: 40px 20px;
    /* évite que le texte colle au header/footer */
    text-align: center;
    color: #5a3e36;
    margin: 0;
}


.coming-soon h1 {
    font-weight: normal;
}