/* --- GLOBAL --- */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0d0d0d; /* noir profond */
    color: #ffffff;
}

/* --- NAVIGATION --- */
nav {
    background-color: #600000; /* rouge foncé */
    padding: 1rem 2rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    max-width: 1200px;
    margin: 0 auto;
}

nav a {
    color: #ff0000; /* rouge vif */
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px #ff0000;
}

/* --- CONTAINER --- */
.container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #1a1a1a;
    border: 2px solid #ff0000;
    border-radius: 10px;
    box-shadow: 0 0 20px #ff0000;
}

.container-navigator {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #1a1a1a;
    border: 2px solid #ff0000;
    border-radius: 10px;
}

/* --- TITRES --- */
h1, h2, h3 {
    color: #ffffff;
    text-shadow: 0 0 10px #ff0000;
}

/* --- BOUTONS --- */
button, .pay-btn {
    background-color: #ff0000;
    border: none;
    padding: 12px 25px;
    color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 20px #ff0000;
    transition: 0.3s;
}

button:hover, .pay-btn:hover {
    background-color: #ff3333;
    box-shadow: 0 0 30px #ff6666;
}

/* --- PRODUITS --- */
.product {
    background-color: #1a1a1a;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: center;
    border: 1px solid #ff0000;
    box-shadow: 0 0 10px #ff0000 inset;
}

.product img {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

/* --- FORMULAIRES --- */
input, textarea, select {
    width: 100%;
    padding: 10px;
    margin: 0.5rem 0 1rem 0;
    border-radius: 5px;
    border: 1px solid #ff0000;
    background-color: #0d0d0d;
    color: #ffffff;
    box-shadow: 0 0 10px #ff0000 inset;
}

input:focus, textarea:focus {
    outline: none;
    border: 1px solid #ff6666;
    box-shadow: 0 0 15px #ff6666 inset;
}

/* --- APERCU IMAGE --- */
#previewImg {
    border-radius: 5px;
    border: 1px solid #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

/* --- PARAGRAPHES --- */
p {
    color: #ddd;
}

/* --- LIEN DÉCORATIF --- */
a {
    transition: 0.3s;
}

a:hover {
    color: #ff6666;
}