
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fffaea;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.6;
}

/* --- HEADER --- */
header {
    background: linear-gradient(135deg, #941818, #5e0202);
    color: white;
    padding: 40px 5%;
    text-align: center;
    border-bottom: 10px solid #d4af37;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    transition: transform 0.5s;
    object-fit: cover;
    margin-bottom: 10px;
}

.logo:hover { 
    transform: rotate(360deg); /* Animation  */
} 

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 20px 0;
}

nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav a:hover { 
    color: gold; 
}

/* --- STRUCTURE PRINCIPALE (Utilisation de l'espace) --- */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.menu-section {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #b8860b;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 10px auto;
}

/* --- STYLE DES COUPONS --- */
.coupon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.coupon-card {
    background: white;
    width: 320px;
    border: 2px dashed #d4af37; /* Effet ticket à découper */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.coupon-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.coupon-header {
    background: #941818;
    color: white;
    padding: 10px;
    font-weight: bold;
    letter-spacing: 1px;
}

.special .coupon-header {
    background: #d4af37;
    color: #5e0202;
}

.coupon-body {
    padding: 25px;
}

.coupon-body h3 {
    font-size: 2.8rem;
    color: #941818;
    margin-bottom: 10px;
}

.coupon-code {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: #fdf2d0;
    border: 1px solid #d4af37;
    font-weight: bold;
    color: #5e0202;
}

.coupon-footer {
    background: #f9f9f9;
    padding: 10px;
    font-size: 0.8rem;
    color: #888;
    border-top: 1px solid #eee;
}



.quote-box {
    background: #fff;
    border-left: 5px solid #d4af37;
    padding: 20px;
    margin: 10px auto;
    max-width: 800px;
    font-style: italic;
}

.btn-link {
    display: inline-block;
    padding: 12px 25px;
    background: #941818;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

footer {
    background: #1a1a1a;
    color: #888;
    padding: 50px;
    text-align: center;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #d4af37;
    color: black;
    padding: 10px 15px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}