        /* --- CSS Reset & Variables --- */
        :root {
            --primary: #ff6b81;
            --primary-hover: #ff4757;
            --secondary: #feca57;
            --dark: #2f3542;
            --light: #f1f2f6;
            --white: #ffffff;
            --font-main: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
        }

        /* --- Navigation --- */
        header {
            background-color: var(--white);
            padding: 1rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* --- Dual Logo Layout --- */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            height: 60px;
        }

        .logo-img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .logo-divider {
            width: 1px;
            height: 30px;
            background-color: rgba(0, 0, 0, 0.15);
        }

        nav a {
            text-decoration: none;
            color: var(--dark);
            margin-left: 1.5rem;
            font-weight: 700;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--primary);
        }

        /* --- Hero Section Layout --- */
        .hero {
            margin-top: 70px;
            background: linear-gradient(rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.25));
            padding: 8rem 5% 9rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            color: var(--primary);
            margin-bottom: 1.2rem;
            text-shadow: 2px 2px 0px var(--white), 4px 4px 15px rgba(0, 0, 0, 0.15);
        }

        .hero-content p {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 2.5rem;
            max-width: 650px;
            margin-inline: auto;
            text-shadow: 1px 1px 0px var(--white), 0px 2px 8px rgba(255, 255, 255, 0.8);
        }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 6px 20px rgba(255, 107, 129, 0.5);
            transition: transform 0.2s, background-color 0.3s, box-shadow 0.2s;
        }

        .btn:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 107, 129, 0.6);
        }

        /* --- Section Styling --- */
        section {
            padding: 5rem 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 3rem;
        }

        .section-title::after {
            content: '🍦';
            display: block;
            font-size: 1.5rem;
            margin-top: 0.5rem;
        }

        /* --- About Truck Service --- */
        .about-container {
            display: flex;
            align-items: center;
            gap: 3rem;
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .about-established {
            display: inline-block;
            background-color: rgba(255, 107, 129, 0.1);
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
            margin-bottom: 1.2rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1.5rem;
            border-top: 1px dashed rgba(0, 0, 0, 0.1);
            padding-top: 1.5rem;
        }

        .about-feat-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .about-image {
            font-size: 8rem;
            text-align: center;
            flex: 1;
            animation: bounce 3s ease infinite;
        }

        .about-text {
            flex: 2;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

     

      

        /* --- Services Grid --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem 1.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border-top: 5px solid var(--primary);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: var(--dark);
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
        }

        .service-card p {
            font-size: 0.95rem;
            color: #57606f;
        }

        /* Live Prep Banner styling */
        .live-prep-banner {
            display: flex;
            align-items: center;
            gap: 2rem;
            background: linear-gradient(135deg, #fff2f2 0%, #ffe3e3 100%);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px dashed var(--primary);
            box-shadow: 0 10px 25px rgba(255, 107, 129, 0.05);
        }

        .live-prep-icon {
            background-color: var(--primary);
            color: var(--white);
            font-weight: 700;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.3rem;
            white-space: nowrap;
            box-shadow: 0 4px 10px rgba(255, 107, 129, 0.2);
        }

        .live-prep-text h3 {
            color: var(--primary);
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }

        /* --- Contact Layout --- */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            text-align: center;
        }

        .contact-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            text-decoration: none;
            color: inherit;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .contact-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .contact-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .contact-card p {
            font-weight: 700;
            word-break: break-word;
        }

        .qr-container {
            width: 110px;
            height: 110px;
            margin: 0 auto 1rem;
            padding: 0.5rem;
            background: var(--light);
            border-radius: 12px;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-qr-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 6px;
        }

        footer {
            background-color: var(--dark);
            color: var(--white);
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .logo-container {
                height: 45px;
                gap: 0.5rem;
            }

            .logo-divider {
                height: 20px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .about-container,
            header,
            .live-prep-banner {
                flex-direction: column;
                text-align: center;
            }

            header {
                gap: 1rem;
            }

            nav a {
                margin: 0 0.7rem;
            }

            .live-prep-banner {
                gap: 1.2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }
        }


        /* --- School Events Gallery --- */
        .school-events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .school-photo-card {
            background-color: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            /* Force the container to remain a perfect square */
            aspect-ratio: 1 / 1; 
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
            border: 4px solid var(--white);
        }

        .school-photo-card img {
            width: 100%;
            height: 100%;
            /* Autofills the square area without squishing or stretching the image */
            object-fit: cover; 
            transition: transform 0.5s ease;
        }

        /* Hover Micro-interactions to match your design system */
        .school-photo-card:hover {
            transform: translateY(-6px) rotate(1deg);
            box-shadow: 0 15px 35px rgba(255, 107, 129, 0.15);
            border-color: var(--secondary);
        }

        .school-photo-card:hover img {
            transform: scale(1.08);
        }

        /* Smooth stagger visual look for every alternate card on hover */
        .school-photo-card:nth-child(even):hover {
            transform: translateY(-6px) rotate(-1deg);
        }


        /* --- Product Photo-Oriented Showcases --- */
        .product-section {
            padding: 4rem 5% 2rem;
        }

        .section-subtitle {
            text-align: center;
            max-width: 600px;
            margin: -2.5rem auto 3rem;
            color: #57606f;
            font-size: 1.1rem;
        }

        .product-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .product-photo-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            display: flex;
            flex-direction: column;
            position: relative;
            transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        /* 70% Scale Image Layout Box */
        .product-image-box {
            width: 100%;
            aspect-ratio: 4 / 3.6; /* Perfectly framed product layout aspect ratio */
            overflow: hidden;
            background-color: var(--light);
        }

        .product-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        /* Minimal text details below image to maximize emphasis on photos */
        .product-details {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .product-details h3 {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .product-details p {
            font-size: 0.95rem;
            color: #57606f;
            line-height: 1.5;
        }

        /* Visual Badging System */
        .product-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            z-index: 10;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .product-badge.premium { background-color: var(--primary); }
        .product-badge.local { background-color: var(--secondary); color: var(--dark); }
        .product-badge.cooling { background-color: #2ed573; }

        /* Direct Photo-Centric Hover Scaling */
        .product-photo-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .product-photo-card:hover .product-image-box img {
            transform: scale(1.08);
        }

        /* Responsive Breakpoint Corrections */
        @media (max-width: 600px) {
            .product-gallery-grid {
                grid-template-columns: 1fr; /* Clean continuous mobile vertical lookbook */
                gap: 1.5rem;
            }
            .section-subtitle {
                margin: -2.5rem auto 2rem;
                font-size: 1rem;
            }
        }