        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            background-color: #0000;
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;
            overflow-x: hidden;
        }


        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #1a1a1a;
            color: #333;
            min-height: 100vh;
            padding-top: 25px;
            padding-top: calc(env(safe-area-inset-top) + 25px);
            padding-bottom: env(safe-area-inset-bottom);
            background-color: #1a1a1a;
        }


        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        header {
            background: #1a1a1a;
            padding: 30px 0 20px 0;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
            border: 2px solid #e74c3c;
        }

        /* === Logo === */
        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 10px 0;
        }

        .logo {
            width: 230px;              /* Taille par défaut sur grand écran */
            max-width: 80%;            /* Empêche que le logo dépasse la largeur de l’écran */
            height: auto;              /* Garde les proportions */
            object-fit: contain;       /* Évite la déformation */
        }

        /* === Responsive === */
        @media (max-width: 768px) {
            .logo {
                width: 190px;          /* Taille réduite sur tablette */
            }
        }

        @media (max-width: 480px) {
            .logo {
                width: 180px;          /* Taille encore réduite sur mobile */
            }
        }


        nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .nav-button {
            background: linear-gradient(135deg, #ff0000, #b30000);
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: none;
        }

        .nav-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(231, 76, 60, 0.4);
        }

        .nav-button.active {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }

        h1 {
            color: #e74c3c !important;
            font-size: 1.5em !important;
            text-shadow: 2px 2px 8px rgba(231, 76, 60, 0.6) !important;
            margin-bottom: 10px !important;
        }


        .tagline {
            font-size: 1.3em;
            color: #ffffff;
            margin: 20px 0;
        }

        .highlight {
            color: #e74c3c;
            font-weight: bold;
        }

        .main-content {
            background: #1a1a1a;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
            margin-bottom: 30px;
            border: 2px solid #e74c3c;
        }

        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        .intro {
            text-align: center;
            margin-bottom: 50px;
        }

        .intro h2 {
            color: #e74c3c;
            font-size: 2.5em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 6px rgba(231, 76, 60, 0.4);
        }

        .intro p {
            font-size: 1.2em;
            color: #ffffff;
            line-height: 1.6;
        }

        .social-section {
            text-align: center;
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
            border-radius: 10px;
            color: white;
        }

        .social-section h3 {
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .social-button {
            display: inline-flex; /* <-- flex pour aligner icône + texte */
            align-items: center;  /* <-- centre verticalement l'icône et le texte */
            justify-content: center; /* <-- optionnel : centre le contenu horizontalement */
            background: linear-gradient(135deg, #ff0000, #b30000);
            color: #ffffff;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            margin-top: 15px;
            box-shadow: 0 0 15px rgba(231, 76, 60, 0.6), 0 4px 10px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .tiktok-icon {
            width: 24px;
            height: 24px;
            margin-right: 10px; /* <-- espace entre l'icône et le texte */
        }


        .social-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 25px rgba(231, 76, 60, 0.9), 0 8px 20px rgba(0, 0, 0, 0.5);
        }

        .contact-section {
            margin-top: 40px;
        }

        .locations {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .location-card {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            color: white;
            transition: transform 0.3s;
        }


        .location-card h4 {
            font-size: 1.8em;
            margin-bottom: 20px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 10px;
        }

        .location-info {
            font-size: 1.1em;
            line-height: 2;
        }

        .location-info p {
            margin: 10px 0;
            display: flex;
            align-items: flex-start;
        }

        .icon {
            margin-right: 10px;
            font-size: 1.3em;
            flex-shrink: 0;
            line-height: 1.5;
        }

        .info-text {
            flex: 1;
            line-height: 1.5;
        }

        footer {
            text-align: center;
            color: white;
            padding: 20px;
            font-size: 1.1em;
        }

        .reviews-section {
            margin-top: 50px;
            padding: 40px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            max-width: 100%;
        }

        .reviews-section h3 {
            color: white;
            font-size: 2.2em;
            margin-bottom: 15px;
            text-align: center;
        }

        .rating-container {
            text-align: center;
            margin: 30px 0;
        }

        .rating-score {
            font-size: 4em;
            color: white;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .stars {
            font-size: 2.5em;
            color: #ffd700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .rating-text {
            font-size: 1.2em;
            color: white;
            margin-top: 10px;
        }

        .reviews-grid {
            display: flex;
            overflow-x: auto;
            overflow-y: hidden;
            gap: 30px;
            margin-top: 30px;
            padding: 10px 5px;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scroll-snap-type: x mandatory;
            height: 250px;
        }

        .reviews-grid::-webkit-scrollbar {
            height: 10px;
        }

        .reviews-grid::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .reviews-grid::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
        }

        .reviews-grid::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }

        .review-card {
            background: rgba(255, 255, 255, 0.15);
            padding: 25px 30px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s;
            min-width: 100%;
            max-width: 100%;
            height: 100%;
            flex-shrink: 0;
            scroll-snap-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-sizing: border-box;
        }

        .review-card:hover {
            transform: translateY(-5px) scale(1.02);
            background: rgba(255, 255, 255, 0.25);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-shrink: 0;
        }

        .review-name {
            font-weight: bold;
            color: white;
            font-size: 1.3em;
        }

        .review-stars {
            color: #ffd700;
            font-size: 1.2em;
        }

        .review-text {
            color: white;
            line-height: 1.6;
            font-size: 1.05em;
            text-align: center;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .review-date {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95em;
            margin-top: 10px;
            font-style: italic;
            text-align: center;
            flex-shrink: 0;
        }

        .scroll-hint {
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1em;
            margin-top: 15px;
            animation: pulse 2s infinite;
        }

        .menu-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .menu-nav-button {
            background: linear-gradient(135deg, #ff0000, #b30000);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1em;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .menu-nav-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(231, 76, 60, 0.6);
        }

        .menu-nav-button.active {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }

        .menu-section {
            margin-bottom: 50px;
            display: none;
        }

        .menu-section.active {
            display: block;
        }

        .menu-section h3 {
            color: #e74c3c;
            font-size: 2em;
            margin-bottom: 10px;
            text-align: center;
            text-shadow: 2px 2px 6px rgba(231, 76, 60, 0.4);
        }

        .price-info {
            color: #ffffff;
            font-size: 0.9em;
            text-align: center;
            margin-bottom: 30px;
            background: rgba(231, 76, 60, 0.2);
            padding: 5px 15px;
            border-radius: 40px;
        }

        .pizzas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .pizza-item {
            background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
            border-radius: 15px;
            padding: 20px;
            border: 2px solid #e74c3c;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pizza-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(231, 76, 60, 0.5);
        }

        .pizza-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4em;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .pizza-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pizza-name {
            color: #e74c3c;
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 10px;
            text-align: center;
        }

        .pizza-ingredients {
            color: #ffffff;
            font-size: 0.95em;
            line-height: 1.6;
            text-align: center;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: rgba(231, 76, 60, 0.8);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            cursor: pointer;
            transition: all 0.3s;
            opacity: 0;
            pointer-events: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }

        .scroll-to-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .scroll-to-top:hover {
            background: rgba(231, 76, 60, 1);
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #ffd700;
            transform: scale(1.3);
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }

            .intro h2 {
                font-size: 1.8em;
            }

            .locations {
                grid-template-columns: 1fr;
            }

            .main-content {
                padding: 20px;
            }

            .container {
                padding: 10px;
            }

            .location-card {
                padding: 20px;
            }

            .nav-button {
                padding: 10px 20px;
                font-size: 1em;
            }

            .reviews-section {
                padding: 20px;
            }

            .reviews-grid {
                gap: 20px;
                height: 280px;
            }

            .review-card {
                min-width: 100%;
                padding: 20px;
            }

            .review-name {
                font-size: 1.1em;
            }

            .review-text {
                font-size: 0.95em;
            }

            .review-date {
                font-size: 0.85em;
            }

            .pizzas-grid {
                grid-template-columns: 1fr;
            }

            .scroll-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }

            .menu-nav-button {
                padding: 10px 20px;
                font-size: 0.9em;
            }

            .rating-score {
                font-size: 3em;
            }

            .stars {
                font-size: 2em;
            }
        }

        .birthday-section {
            text-align: center;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 40px 20px;
            border-radius: 15px;
            margin: 50px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .birthday-section h3 {
            font-size: 2em;
            margin-bottom: 25px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
        }

        .birthday-image {
            width: 100%;
            max-width: 800px;      /* L’image remplit bien le cadre sans dépasser */
            height: auto;
            border-radius: 10px;
            border: 3px solid white;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            object-fit: cover;     /* Garde de belles proportions */
        }

        /* --- Version page Menu --- */
        .birthday-section.menu-style {
            background: none;           /* Enlève le fond rouge */
            box-shadow: none;
            color: #ffffff;             /* Texte blanc visible sur fond rouge déjà présent */
            padding: 20px;
        }

        .highlight {
            color: #ffffff;        
            padding: 2px 4px;
            border-radius: 4px;
            font-weight: bold;
        }


