body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: url('../images/fond.png') no-repeat center center fixed;
    background-size: cover;
    color: #2d2d2d;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.85);
    padding: 20px 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.navbar-logo {
    height: 60px;
}
.navbar-links {
    display: flex;
    gap: 30px;
}
.navbar-links a {
    text-decoration: none;
    color: #8B0000;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.2s;
}
.navbar-links a:hover {
    color: #2d2d2d;
}
.footer {
    background: rgba(139,0,0,0.95);
    color: #fff;
    text-align: center;
    padding: 30px 10px;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    font-size: 1.1em;
    letter-spacing: 1px;
}
@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        padding: 15px 10px;
    }
}
.hero {
    text-align: center;
    margin-top: 80px;
    background: rgba(255,255,255,0.7);
    padding: 60px 30px;
    border-radius: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px rgba(139,0,0,0.12);
}
.hero h1 {
    font-size: 3em;
    color: #8B0000;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}
.cta-btn {
    background: #8B0000;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(139,0,0,0.15);
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #a30000;
}
.produits-section {
    text-align: center;
    margin-top: 80px;
    background: rgba(255,255,255,0.7);
    padding: 40px 30px;
    border-radius: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px rgba(139,0,0,0.12);
    margin-bottom: 60px;
}
.produits-section h1 {
    font-size: 2.5em;
    color: #8B0000;
    margin-bottom: 20px;
}
.produits-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    margin: 40px 0;
    justify-items: center;
}
.produit-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.85);
    border: 2px solid #8B0000;
    border-radius: 16px;
    padding: 24px 16px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(139,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 1.1em;
    font-weight: 600;
    width: 180px;
}
.produit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(139,0,0,0.18);
    background: #fff;
}
.produit-btn img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
}
.produit-btn span {
    color: #8B0000;
    margin-top: 8px;
}
.produit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.85);
    border: 2px solid #8B0000;
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: 0 4px 16px rgba(139,0,0,0.08);
    font-size: 1.1em;
    font-weight: 600;
    width: 180px;
    margin-bottom: 0;
}
.produit-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.produit-card img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(139,0,0,0.18);
}
.produit-card span {
    color: #8B0000;
    margin-top: 8px;
}
