        @import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
        /* Global Styles & Resets */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth; /* Replaces scroll-smooth class */
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #333; /* Default text color */
            background-color: #f8fafc; /* bg-slate-50 */
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1100px; /* Standard container width */
            margin: 0 auto; /* Centers the container */
            padding: 0 1rem; /* Replaces px-6 roughly */
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        /* Typography & Section Titles */
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.25rem; /* text-4xl */
            font-weight: 700; /* font-bold */
            text-align: center;
            margin-bottom: 3rem; /* mb-12 */
            color: #1f2937; /* text-gray-800 */
        }

        /* Header & Navigation */
        #header {
            background-color: #081531;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease-in-out;
            padding: 1rem 0; /* py-4 */
        }

        #header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .header-scrolled {
             box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
             background-color: rgba(255, 255, 255, 0.95); /* bg-white/95 */
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem; /* text-3xl */
            font-weight: 700; /* font-bold */
            color: #ea580c; /* text-orange-600 */
        }

        .main-nav {
            display: none; /* Hidden on mobile by default */
        }

        .nav-link {
            padding: 0.5rem 1rem; /* px-4 py-2 */
            font-size: 1.125rem; /* text-lg */
            color: #fff;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #f97316; /* hover:text-orange-500 */
        }

        #mobile-menu-button {
            display: block; /* Shown on mobile by default */
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }
        
        #mobile-menu-button svg {
            width: 1.5rem; /* w-6 */
            height: 1.5rem; /* h-6 */
            stroke: #ffffff; /* text-gray-700 */
        }

        #mobile-menu {
            display: none; /* Hidden by default */
            background-color: #081531;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* shadow-lg */
            position: absolute;
            top: 100%; /* Position below the header */
            left: 0;
            right: 0;
            border-top: 1px solid #242f48;
        }

        #mobile-menu .nav-link {
            display: block;
            text-align: center;
            color: #fff;
            padding: 1rem; /* More touch-friendly padding */
            border-bottom: 1px solid #242f48; /* border-b */
        }
        #mobile-menu .nav-link:last-child {
            border-bottom: none;
        }


        /* Hero Section */
        #home {
            background-image: url('https://www.kikkoman.eu/fileadmin/user_upload/kikkoman.eu/Food-News/EU_make-your-own-sushi/sushi-kakkoii.jpeg');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 4rem; /* Account for fixed header */
        }

        #home .hero-content {
            text-align: center;
            padding: 2.5rem; /* p-10 */
            border-radius: 0.5rem; /* rounded-lg */
            background: rgba(0, 0, 0, 0.543)
        }

        #home h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem; /* text-5xl */
            font-weight: 700; /* font-bold */
            margin-bottom: 1rem; /* mb-4 */
            color: #fff;
        }

        #home p {
            font-size: 1.25rem; /* text-xl */
            margin-bottom: 2rem; /* mb-8 */
            color: #fff;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 2rem; /* px-8 py-3 */
            border-radius: 0.5rem; /* rounded-lg */
            font-weight: 600; /* font-semibold */
            color: #fff;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: #f97316; /* bg-orange-500 */
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); /* shadow-md */
        }

        .btn-primary:hover {
            background-color: #ea580c; /* hover:bg-orange-600 */
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); /* hover:shadow-lg */
        }

        /* About Us Section */
        #about {
            padding: 5rem 0; /* py-20 */
            background-color: #fff;
        }

        #about .about-grid {
            display: grid;
            gap: 3rem; /* gap-12 */
            align-items: center;
        }
        
        #about .about-content, #about .opening-times-card {
            padding: 2rem; /* p-8 */
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); /* shadow-lg */
        }

        #about .about-content {
            background-color: #f3f4f6; /* bg-gray-100 */
        }
        
        #about .opening-times-card {
            background-color: #fff7ed; /* bg-orange-50 */
        }

        #about h3 {
            font-size: 1.5rem; /* text-2xl */
            font-weight: 600; /* font-semibold */
            color: #374151; /* text-gray-700 */
            margin-bottom: 1rem; /* mb-4 */
        }
         #about .opening-times-card h3 {
            text-align: center;
         }

        #about p, #about ul li {
            color: #4b5563; /* text-gray-600 */
            margin-bottom: 1rem; /* mb-4 for p */
        }
        
        #about .mobile-number {
            font-size: 1.5rem; /* text-2xl */
            color: #ea580c; /* text-orange-600 */
            font-weight: 700; /* font-bold */
            margin-bottom: 1.5rem; /* mb-6 */
        }
        #about .mobile-number a:hover {
            text-decoration: underline;
        }

        #about .opening-times-list {
            font-size: 1rem; /* text-lg */
            color: #374151; /* text-gray-700 */
        }
        #about .opening-times-list li {
            display: flex;
            justify-content: space-between;
            padding-bottom: 0.25rem; /* pb-1 */
            border-bottom: 1px solid #e5e7eb; /* border-b */
            margin-bottom: 0.5rem; /* space-y-2 */
        }
        #about .closed{
          color: rgb(187, 0, 0);
        }
        #about .opening-times-list li:last-child {
            border-bottom: none;
        }


        /* Menu Section */
        #menu {
            padding: 2rem 0;
            background-color: #f8fafc;
        }

        .menu-category {
            margin-bottom: 3rem;
        }

        .menu-category-title {
            font-family: 'Playfair Display',
            font-size: 1.875rem;
            font-weight: 600;
            color: #ea580c;
            text-align: center;
            text-transform: uppercase;
        }
        .menu-category-title-description {
          font-size: 1rem;
          font-weight: 600;
          color: #374151;
          margin-bottom: 1.5rem;
          text-align: center;
      }

        .menu-item {
            background-color: #fff;
            padding: 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 2px 4px 0 rgba(0,0,0,0.05);
            transition: box-shadow 0.3s ease;
            margin-bottom: 1.5rem;
        }
        .menu-item:last-child {
            margin-bottom: 0;
        }

        .menu-item:hover {
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
        }

        .menu-item-name-price {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
        }

        .menu-item-name {
            font-size: 1rem;
            font-weight: 600;
            color: #374151;
            flex-shrink: 0;
            text-transform: uppercase;
        }

        .menu-item-dots {
            flex-grow: 1;
            border-bottom: 2px dotted #cbd5e0;
            margin: 0 0.25rem;
            position: relative;
            bottom: 4px;
        }

        .menu-item-price {
            font-size: 1rem;
            font-weight: 600;
            color: #374151;
            flex-shrink: 0;
        }

        .menu-item-description {
            color: #f97316;
            font-size: 0.85rem;
        }

        /* Gallery Section */
        #gallery {
            padding: 5rem 0;
            background-color: #fff;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
        }

        .gallery-img {
            width: 100%;
            height: 16rem;
            object-fit: cover;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
        }

        /* Contact Section */
        #contact {
            padding: 5rem 0;
            background-color: #1f2937;
            color: #fff;
            text-align: center;
        }
        #contact .section-title {
            color: #fff; /* text-white */
        }

        #contact p {
            font-size: 1.125rem; /* text-lg */
            margin-bottom: 1rem; /* mb-4 */
        }

        #contact .contact-phone {
            font-size: 1.875rem; /* text-3xl */
            font-weight: 700; /* font-bold */
            color: #fb923c; /* text-orange-400 */
            margin-bottom: 2rem; /* mb-8 */
        }
        #contact .contact-phone a:hover {
            text-decoration: underline;
        }
        
        #contact .contact-address {
            font-size: 1.25rem; /* text-xl */
            margin-bottom: 2rem; /* mb-8 */
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem; /* space-x-6 */
        }

        .social-links a {
            color: #fb923c; /* text-orange-400 */
            transition: color 0.3s ease;
        }
        .social-links a:hover {
            color: #fdba74; /* hover:text-orange-300 */
        }
        .social-links svg {
            width: 2rem; /* w-8 */
            height: 2rem; /* h-8 */
        }
        .sr-only { /* For accessibility, hide text visually but keep for screen readers */
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }


        /* Footer */
        footer {
            background-color: #111827; /* bg-gray-900 */
            color: #9ca3af; /* text-gray-400 */
            padding: 2rem 0; /* py-8 */
            text-align: center;
        }
        footer p {
            margin-bottom: 0.5rem;
        }
        footer .footer-highlight {
            color: #fb923c; /* text-orange-400 */
        }


        /* Responsive Media Queries */
        @media (min-width: 768px) { /* md breakpoint */
            .section-title {
                font-size: 2.5rem; /* text-4xl (adjust if needed) */
            }
            #home h1 {
                font-size: 4rem; /* md:text-7xl */
            }
            #home p {
                font-size: 1.5rem; /* md:text-2xl */
            }
            .main-nav {
                display: flex; /* Show main nav on desktop */
                gap: 0.5rem; /* space-x-2 */
            }
            #mobile-menu-button {
                display: none; /* Hide hamburger on desktop */
            }
            #about .about-grid {
                grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
            }
            .menu-category-title {
                text-align: left; /* md:text-left */
            }
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr); /* sm:grid-cols-2 */
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
            }
        }