        /* === CSS VARIABLES === */
        :root {
            --primary-gold: #b59f6b;
            --dark-gold: #c2a649;
            --gold: #c2a649;
            --white: #fff;
            --text-dark: #333333;
            --text-light: #ffffff;
            --font-heading: 'Cormorant', serif;
            --font-body: 'Karla', sans-serif;
        }

        /* === RESET & BASE STYLES === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html{ scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #fcfcfc;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: normal;
        }

        h2{ font-size: 4em; margin-bottom: 30px; font-weight:500; line-height:1; }

        p { var(--font-body); }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        table td, table th {
             vertical-align: top;
         }

         section, [id] { scroll-margin-top: 200px; }

        .mobilepage tr td:nth-of-type(1) {
        font-weight: 600; }

        .mobilepage tr td:nth-of-type(2) {
        font-weight: 400; }

        .btn {
            display: inline-block;
            padding: 20px 30px;
            font-family: var(--font-body);
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius:0px;
        }

        .btn-primary {
            background-color: var(--primary-gold);
            color: var(--text-light);
            border: none;
        }

        .btn-primary:hover {
            background-color: var(--dark-gold);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--text-light);
            border: 1px solid var(--text-light);
        }

        .btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* === HEADER === */

            header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 10%;
            background-color: rgba(255,255,255,0);
            position: absolute;
            top: 0;
            left: 0;
            z-index: 999;
            transition: all 0.3s ease-in-out;
            width:100%;
        }

         /* Class injected by JS when scrolled past 100vh */
        header.fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            animation: slideDown 0.4s ease; /* Crisp drop-down animation */
        }

        header.fixed-header .logo img{ height:100px; }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }


.logo img {
    height: 200px;
    display: block;
    width: auto;
}
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav a
 {
    font-family: var(--font-body);
    font-size: 1em;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 1);
}

        nav a:hover {
            color: var(--primary-gold);
        }

        .awards {
            display: flex;
            gap: 10px;
        }

        .awards img {
            height: 60px;
        }

        /* === HERO SECTION === */
        .hero {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/background-1.png);
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 5% 0 5%;
    background-size: cover;
    background-position: top;
    margin-top:-100px;
    z-index:0;
    position:relative;
}

        .mobilepage .hero {
    background-image: url(images/mobile-hero.jpg);}

       .hero-card {
    background-color: transparent;
    padding: 15px;
    width: 100%;
    max-width: 900px;
    text-align: center;
    box-shadow: none;
    margin: auto;
}

        .hero-card-inner {
            border: 2px solid var(--white);
            padding: 40px 20px;
        }

        .hero-card-inner img{ margin: auto auto 20px auto; height:60px; }

        .hero-icon {
            color: var(--primary-gold);
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .hero-card h2 {
    font-size: 4vw;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 5px;
    width: 90%;
    margin: auto;
    line-height: 1;
    margin-bottom: 40px;
}

        .hero-card h3 {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 5px;
            letter-spacing: 3px;
        }

        .hero-card p {
            font-size: 1rem;
            color: var(--gold);
            letter-spacing: 2px;
            margin-bottom: 25px;
        }

/* === PROMOS SECTION (Purple) === */
        .promos {
            display: flex;
            background-color: var(--primary-gold);
            color: var(--text-light);
            text-align: center;
        }

        .promo-box {
            flex: 1;
            padding: 60px 40px;
            position: relative; /* Required to anchor the absolute positioned ::after border */
        }

        /* Vertical divider using ::after */
        .promo-box:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 20%; /* Centers a 60% height element vertically (100 - 60 = 40 / 2) */
            right: 0;
            width: 1px;
            height: 60%;
            background-color: #fff;
        }

        .promo-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 20px;
        }

        .promo-box h3 {
            font-size: 1.5rem;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        .promo-box h4 {
            font-weight: 300;
            font-size: 1rem;
            color: #ddd;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .promo-box p {
            font-size: 0.9rem;
            max-width: 400px;
            margin: 0 auto 30px auto;
            color: #eee;
        }

        .mobilepage .promo-box h3, .mobilepage .promo-box h4, .mobilepage .promo-box p, .mobilepage .promo-box li{ text-align:left; width:100%; max-width:100%; }

        .mobilepage .promo-box li{ margin-left:20px; }

        .mobilepage .promo-box img { height: auto; width: 100%; margin:40px auto 20px auto; }

        .mobilepage .promo-box { padding: 60px 5%; }

        .promo-box img{ height:120px; margin:auto auto 20px auto; }

        .accred { background-color:#fff; text-align:center; }
        .accred img{ margin:auto; padding:20px 0; }

        /* === FEATURES SECTION (Split Grid) === */
        .features {
            display: flex;
        } 

        .features div{ width:50%; box-sizing:border-box; }

        .feature-box {
            flex: 1;
            padding: 10%;
            text-align: center;
        }

        .feature-box img{ margin: 40px auto; width: 100px; }

        .feature-curries {
            background: url('images/curries.jpg') bottom/100%;
            background-color:#111;
            background-repeat:no-repeat;
            color: var(--text-light);
            padding: 60px 5%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-curries h3, .feature-extras h3 {
            font-size: 2rem;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .feature-curries h4, .feature-extras h4 {
            font-weight: 300;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .feature-curries p, .feature-extras p {
            font-size: 0.95rem;
            max-width: 450px;
            line-height: 1.8;
            padding-bottom:40vh;
        }

        .feature-extras {
            background: url('images/pizza-image.jpg') bottom/100%;
            background-color:#fff;
            background-repeat:no-repeat;
            padding: 60px 5% 0 5%; /* Bottom padding 0 to let image touch bottom */
            display: flex;
            flex-direction: column;
        }

        .feature-extras h3 {
            color: var(--text-dark);
        }

        .feature-extras h4 {
            color: #666;
        }

        .feature-extras p {
            color: #555;
            margin-bottom: 30px;
        }

        .feature-extras img {
            margin-top: auto; /* Pushes image to bottom */
            width: 100%;
        }

        .feature-extras2{background: url('images/dessert-image.jpg') bottom/100%; background-repeat:no-repeat; background-size: contain;
 }
        .feature-box2{} 

        /* Mobile Catering  */

        .menu1{
            background-image: none;
            background-color:#111;
            padding: 50px 5% 60px 5%;
        }

        .menu2{
            background-image: none;
            background-color:#ccc;
            padding: 50px 5% 60px 5%;
        }

        .menu3{
            background-image: none;
            background-color:var(--primary-gold);
            padding: 50px 5% 60px 5%;
        }

        .menu4{
            background-image: none;
            background-color:#cec285;
            padding: 50px 5% 60px 5%;
        }

        .menu5{
            background-image: none;
            background-color:#a98f11;
            padding: 50px 5% 60px 5%;
        }

        .menu6{
            background-image: none;
            background-color:#fff;
            padding: 50px 5% 60px 5%;
        }

        .menu6 img{ max-width:200px; margin:Auto; }

        /* === REVIEWS SECTION (Gold) === */
        .reviews {
            background-color: var(--gold);
            display: flex;
            align-items: center;
            padding: 60px 5%;
            color: var(--text-light);
        }

        .review-text {
            flex: 1;
            padding-right: 40px;
            text-align:center;
            width:100%;
        }

        .review-text h3 {
            font-size: 2rem;
            letter-spacing: 1px;
        }

        .review-text h4 {
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .review-text p {
            font-size: 1rem;
            max-width:100%;
        }

        .review-video {
            flex: 1;
            width:100%;
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            background: #000;
            border: 5px solid #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .video-container iframe, .video-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* === FOOTER === */
        footer {
            color: var(--text-light);
            background-color:#464646;
        }


        .footer-main {
            padding: 60px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-address {
            font-family: var(--font-heading);
            font-size: 1rem;
            letter-spacing: 1px;
            margin:Auto;
        }

       .opening{ text-align: center; display: block; }

        .opening .footer-address {
         display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10%;
        }

        .contact{ justify-content:center;  background-color:#fff; }

        .map{ width: 90%; max-width: 900px;}

        .map h2{ margin-bottom:20px; text-align:center; color:#111; }


        .footer-socials {
            display: flex;
            gap: 15px;
            font-size: 1.5rem;
        }

        .footer-socials a:hover {
            color: var(--gold);
        }

        .footer-socials img{ height:40px; }

        .footer-bottom {
            background-color: #000;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
        }

        .footer-links a {
            margin-right: 15px;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .footer-payments {
            display: flex;
            gap: 10px;
            font-size: 1.5rem;
        }

        .fifty{ width:50%; text-align:center;}

        /* === DELIVERY INFORMATION SECTION === */
        .delivery-section {
            padding: 60px 0;
            background-color: #ffffff;
            font-family: var(--font-body);
            color: #555555;
        }

        .delivery-title {
            color: var(--primary-gold);
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        .delivery-intro {
            font-size: 1rem;
            margin-bottom: 20px;
            text-align: center;
        }

        /* Responsive Table Wrapper */
        .table-container {
            width: 100%;
            overflow-x: auto;
            margin-bottom: 25px;
            -webkit-overflow-scrolling: touch;
        }

        .delivery-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 350px; /* Prevents text squeezing too tightly on small mobile */
        }

        .delivery-table th {
            font-family: var(--font-heading);
            color: var(--primary-gold);
            font-size: 1.1rem;
            font-weight: normal;
            letter-spacing: 1px;
            padding: 8px 10px;
            text-align: center;
            border: 1px solid #e0e0e0;
            background-color: #fdfbfd; /* Subtle tint to match the image style */
        }

        .delivery-table td {
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            color: var(--primary-gold);
            font-size: 1.05rem;
        }

        /* Alternating row colors or simple clean states */
        .delivery-table tbody tr:hover {
            background-color: #fafafa;
        }

        .delivery-note {
            font-size: 0.8rem;
            color: var(--primary-gold);
            line-height: 1.6;
            text-align: center;
        }

        .ctas{ display:flex; flex-direction:row; justify-content: center; align-items:center; background-color:#464646; }
        .ctas div{ width:25%; padding: 20px 5px; border-left:1px solid var(--primary-gold); box-sizing:border-box; color:var(--primary-gold); font-size:21px; text-align:center;  font-family:var(--font-heading); }
        .ctas div:nth-of-type(1){ border-left:none; }


        /* === RESPONSIVE MEDIA QUERIES === */
        @media (max-width: 992px) {
            header {
                flex-direction: column;
                gap: 20px;
            }
            
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* Hide mobile nav toggle elements on desktop by default */
        .nav-toggle {
            display: none;
        }

        .nav-toggle-label {
            display: none;
            cursor: pointer;
            padding: 10px;
        }

        @media (max-width: 768px) {

            .ctas div:nth-child(1){ display:block; width:100%; }

            .ctas div:nth-child(2), .ctas div:nth-child(3), .ctas div:nth-child(4) { display:none; }

            .features div{ width:100%; }

            .features:nth-child(1  of .features){ flex-direction: column-reverse; }
            .features:nth-child(2  of .features){ flex-direction: column; }


            .feature-extras {
    background-color: #fff;
    background-repeat: no-repeat;
    padding: 0px 5% 0 5%;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 400px;
    background-size: contain;
}


            .promo-box:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20%;
    bottom: 0;
    top:100%;
    height: 1px;
    width: 60%;
    background-color: #fff;
}

            .opening .footer-address {
             display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
            }

            /* --- HEADER & BURGER MENU --- */
                header {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 5%;
        height: 100px;
        background:rgba(0, 0, 0, 0.7);
    }

    header .logo img{ height:100px; }

            /* Display the burger icon */
            .nav-toggle-label {
                display: block;
                position: relative;
                width: 30px;
                height: 24px;
                z-index: 1001;
            }

            /* Burger lines */
            .nav-toggle-label span,
            .nav-toggle-label span::before,
            .nav-toggle-label span::after {
                display: block;
                background: var(--primary-gold);
                height: 3px;
                width: 100%;
                position: absolute;
                transition: all 0.3s ease-in-out;
            }

            .nav-toggle-label span {
                top: 10px;
                right:20px;
            }

            .nav-toggle-label span::before {
                content: '';
                top: -10px;
            }

            .nav-toggle-label span::after {
                content: '';
                top: 10px;
            }

            /* Transform Burger to "X" when checked */
            .nav-toggle:checked ~ .nav-toggle-label span {
                background: transparent;
            }

            .nav-toggle:checked ~ .nav-toggle-label span::before {
                top: 0;
                transform: rotate(45deg);
            }

            .nav-toggle:checked ~ .nav-toggle-label span::after {
                top: 0;
                transform: rotate(-45deg);
            }

            /* Mobile Navigation Panel Hidden by Default */
                nav{
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: none;
        height: 100vh;
        background: #000;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: left 0.3s ease-in-out;
        padding: 200px 30px;
    }


            nav ul {
                flex-direction: column; gap: 60px; align-items: flex-start;
            }
                nav a { font-size: 3rem; }

            /* Slide menu into view when checkbox is clicked */
            .nav-toggle:checked ~ nav {
                left: 0;
            }

            .awards img { height: 50px; }

            .hero {
            justify-content: center;
            padding: 0 20px;
            height: auto;
            min-height: 70vh;
             }

            .hero-card {
            max-width: 90%;
            margin-top: 25vh;
            padding: 0px;
            margin-bottom: 10vh;
            }

            .hero-card h2 { font-size: 9vw; }
            .hero-card p{ font-size:0.8em; }

            .hero-card h3 {  font-size: 2.2rem; }

            .promos, .reviews {
                flex-direction: column-reverse;
            }

            .promo-box {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .feature-curries {
                padding: 60px 5%;
                min-height: 400px;
            }

            .review-text {
                padding-right: 0;
                margin-bottom: 30px;
                text-align: center;
            }

            .review-text p {
                margin: 0 auto;
            }

            .footer-main, .footer-bottom {
                flex-direction: column-reverse;
                text-align: center;
                gap: 40px;
                padding: 60px 2%;
            }

            .feature-curries p, .feature-extras p { padding-bottom: 30vh; }
        }
