/* Modern Restaurant Menu Design */
        body {
            font-family: 'Playfair Display', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f5f0;
            margin: 0;
            padding: 0;
            background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
        }

        .margin {
            padding: 50px 0;
            background-color: rgba(255, 255, 255, 0.92);
        }

        /* Images décoratives */
        .deco-image {
            position: absolute;
            opacity: 0.08;
            z-index: 0;
            pointer-events: none;
        }

        .deco-1 {
            position: sticky;
            top: 15%;
            left: 5%;
            width: 150px;
            height: 150px;
            background-image: url('https://cdn-icons-png.flaticon.com/512/3824/3824581.png');
            background-size: contain;
            background-repeat: no-repeat;
        }

        .deco-2 {
            bottom: 20%;
            right: 5%;
            width: 200px;
            height: 200px;
            background-image: url('https://cdn-icons-png.flaticon.com/512/3149/3149027.png');
            background-size: contain;
            background-repeat: no-repeat;
        }

        .deco-3 {
            top: 40%;
            right: 10%;
            width: 120px;
            height: 120px;
            background-image: url('https://cdn-icons-png.flaticon.com/512/3824/3824592.png');
            background-size: contain;
            background-repeat: no-repeat;
        }

        .deco-4 {
            bottom: 10%;
            left: 10%;
            width: 180px;
            height: 180px;
            background-image: url('https://cdn-icons-png.flaticon.com/512/1046/1046785.png');
            background-size: contain;
            background-repeat: no-repeat;
        }
        .deco-1, .deco-2, .deco-3, .deco-4{
            position: fixed;
        }

        .container {
            background-color: rgba(255, 255, 255, 0.54);
            max-width: 90%;
            margin: auto;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 8px;

        }
        .container {
    position: relative; /* nécessaire pour les images absolues à l'intérieur */
    max-width: 90%;
    margin: auto;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Images décoratives dans les coins */
.decoplat-1, .decoplat-2, .decoplat-3, .decoplat-4 {
    position: absolute; /* maintenant par rapport au conteneur */
    pointer-events: none;
    background-size: contain;
    background-repeat: no-repeat;
}

.decoplat-1 {
    top: 0;
    left: 0;
    width: 30%;
    height: 30%;
    z-index:3;
    transform: scaleX(-1);
    background-image: url('../images/icons/deco2palet.svg');
}

.decoplat-2 {
    top: 0;
    right: 0;
    width: 30%;
    height: 30%;
    z-index:3;
    background-image: url('../images/icons/deco2palet.svg');
}

.decoplat-3 {
    bottom: 0;
    left: 0;
    width: 30%;
    height: 30%;
    z-index:3;
transform: scaleX(-1) scaleY(-1);
    background-image: url('../images/icons/deco2palet.svg');
}

.decoplat-4 {
    bottom: 0;
    right: 0;
    width: 30%;
    height: 30%;
    z-index:3;
    transform: scaleY(-1);
    background-image: url('../images/icons/deco2palet.svg');
}

        
        .special-menus a {
            text-decoration: none;
            color: inherit;
        }

        .menu-section a{
            text-decoration: none;
            color: inherit;
        }

        h1 {
            text-align: center;
            font-size: 42px;
            margin: 0 0 30px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #8b5a2b;
            position: relative;
            padding-bottom: 15px;
        }

        h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: #8b5a2b;
        }

        h2 {
            font-size: 24px;
            margin: 40px 0 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #8b5a2b;
            text-align: center;
            position: relative;
            padding-bottom: 10px;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: #d4a76a;
        }

        .container h3 {
            font-size: 18px;
            margin: 25px 0 15px;
            font-weight: 600;
            color: #555;
            border-left: 4px solid #d4a76a;
            padding-left: 10px;
        }

        .menu-section {
            margin-bottom: 40px;
            background-color: #fffaf5;
            padding: 20px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px dashed #e0d5c8;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .menu-item:hover {
            transform: translateX(5px);
        }

        .menu-item-name {
            flex: 3;
            font-weight: 600;
            color: #555;
            min-width: 90px;
        }

        .menu-item-price {
            flex: 1;
            text-align: right;
            font-weight: 700;
            color: #8b5a2b;
        }

        .menu-item-desc {
            font-style: italic;
            margin: 5px 0 10px 15px;
            color: #777;
            font-size: 14px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        td {
            padding: 10px 0;
            vertical-align: top;
            border-bottom: 1px dashed #e0d5c8;
        }

        td:nth-child(odd) {
            font-weight: 600;
            color: #555;
        }

        td:nth-child(even) {
            text-align: right;
            font-weight: 700;
            color: #8b5a2b;
        }

        /* Style pour les menus spéciaux */
 

        .special-menu {
            background-color: #fff;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid #e0d5c8;
            transition: transform 0.3s ease;
            min-height: 290px;
        }

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

        .special-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #d4a76a, #8b5a2b);
        }

        .special-menu-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            font-weight: 600;
            color: #8b5a2b;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .special-menu-content {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .special-menu-price {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: #8b5a2b;
        }

        /* Animations */
        .animate-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Grid */
        .colonnes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        /* Price Highlight */
        .menu-item-price::before {
            content: '€';
            margin-right: 2px;
            font-size: 0.9em;
            padding-left: 15px;

        }

        /* Add some decorative elements */
        .menu-section::before {
            content: '· · ·';
            display: block;
            text-align: center;
            color: #d4a76a;
            letter-spacing: 5px;
            margin-bottom: 15px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .container {
                max-width: 95%;
                padding: 20px;
            }
            
            h1 {
                font-size: 32px;
            }
            
            h2 {
                font-size: 20px;
            }
            
            .colonnes {
                grid-template-columns: 1fr;
            }

            .special-menus {
                grid-template-columns: 1fr;
            }
        }

        .pdfcarte{
            color: black;
            background-color: #fff;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid #e0d5c8;
            transition: transform 0.3s ease;
            width: 75%;
            margin: auto;
        }

        .pdfcarte::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #d4a76a, #8b5a2b);
        }
        .pdfcarte:hover {
            transform: translateY(-5px);
        }
        .container a{
            text-decoration: none;
        }




        .menucart{
            display: flex;
            flex-direction: column;
        }

        .special-menus{
            display: flex;
            justify-content: center;

        }
        iframe{
            border-radius: 12px;
            border: 2px solid #232323;
            margin-bottom: 15px;
            width: 90vh;
            height: 90vh;
            border: none;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }