        body {
            background-color: #bd2e23;
            color: white;
        }
        .logo {
            transition: all 0.3s ease;
            width: 150px;
            position: fixed;
            top: 10px;
            left: 10px;
            z-index: 1000;
        }
        .category-menu {
            background-color: #000000;
            padding: 10px;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
        }
        .category-menu .navbar {
            margin-bottom: 0;
        }
        .card {
            background-color: #212529;
            border: 1px solid #495057;
        }
        .card-title, .card-text {
            color: white;
        }
        .content {
            margin-top: 100px;
        }
        .header-banner {
            background-color: #000000;
            color: white;
            padding: 0 0;
            text-align: center;
            border-radius: 10px;
        }
        h2 {
            color: white;
            text-transform: uppercase;
            text-align: center;
            margin-top: 20px;
        }
        .navbar-text {
            font-size: 1.5rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        .navbar-dark .navbar-toggler {
	    color: rgb(255 255 255);
	    border-color: rgb(255 255 255);
        margin-left: 5px;

	}

        #homepage-content {
            display: block; /* Inizialmente visibile */
        }

        .allergens-section {
            margin: 40px auto 28px;
            max-width: 600px;
            padding: 24px;
            background: rgba(255,255,255,0.06);
            border-radius: 12px;
            border: 1px solid rgba(201,168,76,0.2);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            text-align: center;
        }

        .allergens-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--gold, #c9a84c);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .allergens-text {
            font-size: 0.88rem;
            color: var(--text, #ddd);
            line-height: 1.65;
            margin: 0;
        }

        .subsection-title {
            font-size: 1.3rem;
            color: var(--gold, #c9a84c);
            margin: 32px 0 16px;
            font-weight: 600;
            text-align: center;
        }

        .subsection-title {
            font-size: 1.4rem;
            color: var(--gold, #c9a84c);
            margin: 36px 0 20px;
            font-weight: 600;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .subsection-title::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background: var(--gold);
            margin: 8px auto 0;
        }
        .subcategory-toggle {
            cursor: pointer;
            margin: 24px 0;
        }
        .subsection-title {
            margin-bottom: 12px !important;
        }
        .toggle-arrow {
            font-size: 0.9rem;
            transition: transform 0.3s ease;
            display: inline-block;
            margin-left: 8px;
        }
        .subcat-dishes {
            animation: slideDown 0.3s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; max-height: 0; }
            to { opacity: 1; max-height: 1000px; }
        }
