    :root {
    	--white: #fff;
    	--black: #000;
    	--dark: #111;
    	--gray: #aaa;
    	--transition: all 0.4s ease;
    }

    * {
    	margin: 0;
    	padding: 0;
    	box-sizing: border-box;
    }

    body {
    	font-family: "Poppins", sans-serif;
    	color: var(--white);
    	background-color: var(--black);
    	line-height: 1.6;
    	overflow-x: hidden;
    }

    /* === NAVBAR === */
    .navbar {
    	position: fixed;
    	top: 0;
    	width: 100%;
    	z-index: 999;
    	background: rgba(0, 0, 0, 0.7);
    	backdrop-filter: blur(10px);
    	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    	transition: background 0.3s ease, padding 0.3s ease;
    	padding: 18px 0;
    }

    .nav-container {
    	max-width: 1200px;
    	margin: 0 auto;
    	padding: 0 30px;
    	display: flex;
    	align-items: center;
    	justify-content: space-between;
    }

    .logo img {
    	max-width: 120px;
    }

    .logo:hover {
    	color: var(--gray);
    }

    .nav-links {
    	list-style: none;
    	display: flex;
    	gap: 30px;
    }

    .nav-links li a {
    	color: var(--white);
    	text-decoration: none;
    	font-size: 1rem;
    	letter-spacing: 1px;
    	transition: var(--transition);
    }

    .nav-links li a:hover {
    	color: var(--gray);
    }

    /* Shrink navbar on scroll */
    .navbar.scrolled {
    	background: rgba(0, 0, 0, 0.9);
    	padding: 10px 0;
    	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* === MOBILE NAV === */
    .nav-toggle {
    	display: none;
    	font-size: 1.8rem;
    	color: var(--white);
    	cursor: pointer;
    }

    /* Style for Order Now link in navbar */
    .nav-links li a.order-now {
    	border: 1px solid var(--white);
    	padding: 8px 18px;
    	border-radius: 25px;
    	transition: var(--transition);
    	font-weight: 500;
    }

    .nav-links li a.order-now:hover {
    	background: var(--white);
    	color: var(--black);
    }

    @media (max-width: 768px) {

    	/* Full-height mobile sidebar */
    	.nav-links {
    		position: fixed;
    		top: 0;
    		/* start from top */
    		right: -100%;
    		width: 200px;
    		height: 100vh;
    		/* full viewport height */
    		background-color: var(--white);
    		/* white background */
    		flex-direction: column;
    		text-align: center;
    		padding: 70px 0 30px;
    		/* top padding to avoid overlap with toggle */
    		transition: right 0.4s ease;
    		display: flex;
    		justify-content: flex-start;
    		/* start items from top */
    	}

    	.nav-links.show {
    		right: 0;
    	}

    	.nav-links li {
    		margin: 15px 0;
    	}

    	.nav-links li a {
    		color: var(--black);
    		text-decoration: none;
    		font-weight: 500;
    	}

    	.nav-links li a:hover {
    		letter-spacing: 0.10rem;
    		color: var(--gray);
    	}

    	/* Push Order Now to bottom */
    	.nav-links li a.order-now {
    		margin-top: auto;
    		/* pushes it to bottom */
    		border: 1px solid var(--black);
    		padding: 10px 20px;
    		border-radius: 25px;
    		display: inline-block;
    		text-transform: uppercase;
    		transition: var(--transition);
    	}

    	.nav-links li a.order-now:hover {
    		background: var(--black);
    		color: var(--white);
    	}

    	.nav-toggle {
    		display: block;
    		color: var(--gray);
    		position: fixed;
    		top: 15px;
    		right: 20px;
    		font-size: 1.8rem;
    		cursor: pointer;
    		z-index: 1000;
    	}
    }


    /* === HERO === */
    .hero {
    	position: relative;
    	height: 100vh;
    	background: url('../img/f1.jpeg') center/cover no-repeat;
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	text-align: center;
    	color: var(--white);
    }

    .hero::after {
    	content: "";
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    	background: rgba(0, 0, 0, 0.6);
    	z-index: 1;
    }

    .hero-content {
    	position: relative;
    	z-index: 2;
    	max-width: 600px;
    }

    .hero h1 {
    	font-size: 3rem;
    	letter-spacing: 3px;
    	margin-bottom: 15px;
    	text-transform: uppercase;
    }

    .hero p {
    	color: var(--gray);
    	margin-bottom: 25px;
    }

    .btn {
    	border: 1px solid var(--white);
    	color: var(--white);
    	padding: 12px 30px;
    	border-radius: 30px;
    	text-decoration: none;
    	transition: var(--transition);
    }

    .btn:hover {
    	background: var(--white);
    	color: var(--black);
    	transform: translateY(-3px);
    }

    /* === ABOUT === */
    .about {
    	background: var(--dark);
    	padding: 100px 20px;
    	text-align: center;
    }

    .about h2 {
    	font-size: 2.2rem;
    	margin-bottom: 20px;
    	letter-spacing: 2px;
    }

    .about p {
    	color: var(--gray);
    	max-width: 700px;
    	margin: auto;
    	line-height: 1.8;
    }

    /* === MENU === */
    .menu {
    	padding: 100px 20px;
    	text-align: center;
		background-color: var(--gray);
    }

    .menu h2 {
    	font-size: 2.3rem;
    	margin-bottom: 40px;
    }

    .menu-items {
    	display: flex;
    	gap: 50px;
    	/* more spacing between cards */
    	justify-content: center;
    	/* center cards horizontally */
    }

    .menu-item {
    	background: rgba(255, 255, 255, 0.05);
    	border: 1px solid rgba(255, 255, 255, 0.1);
    	border-radius: 15px;
    	overflow: hidden;
    	width: 80%;
    	/* large card width */
    	max-width: 600px;
    	/* cap for very large screens */
    	transition: var(--transition);
    }

    .menu-item:hover {
    	transform: translateY(-10px);
    	box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
    }

    .menu-item img {
    	width: 100%;
    	height: 450px;
    	/* tall vertical image */
    	object-fit: cover;
    	filter: grayscale(100%);
    	transition: var(--transition);
    }

    .menu-item:hover img {
    	filter: grayscale(0);
    }

    @media (max-width: 768px) {
    	.menu-item {
    		width: 95%;
    		/* almost full width on mobile */
    	}

    	.menu-item img {
    		height: auto;
    		/* maintain aspect ratio */
    	}
    }

.menu-button-container {
    margin-top: 40px;
    text-align: center; /* center the button */
}

.explore-menu {
    border: 2px solid var(--white);
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--white);
    text-transform: uppercase;
    transition: var(--transition);
}

.explore-menu:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

    .menu-info {
    	padding: 20px;
    }

    .menu-info h3 {
    	margin-bottom: 10px;
    	font-size: 1.2rem;
    }

    .menu-info p {
    	color: var(--gray);
    	font-size: 0.95rem;
    }

    .menu-info span {
    	display: block;
    	margin-top: 12px;
    	color: var(--white);
    	font-weight: bold;
    }

    /* === MAP === */
    .map {
    	padding: 100px 20px;
    	text-align: center;
    }

    .map-container {
    	max-width: 800px;
    	margin: auto;
    	border: 2px solid rgba(255, 255, 255, 0.2);
    	border-radius: 10px;
    	overflow: hidden;
    	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    }

    /* === FOOTER === */
    footer {
    background: var(--black);
    color: var(--gray);
    text-align: center;
    padding: 40px 20px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

footer a:hover {
    color: var(--gray);
    text-decoration: underline;
}

.footer-content {
    max-width: 800px;
    margin: auto;
}

.footer-contact {
    margin-top: 15px;
}

.footer-contact p i {
    color: var(--white); /* ensures visibility */
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: var(--gray);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact p:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-contact p {
        font-size: 0.9rem;
    }
}

    /* === ANIMATION === */
    .fade-in {
    	opacity: 0;
    	transform: translateY(30px);
    	transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
    	opacity: 1;
    	transform: translateY(0);
    }

    @media (max-width: 768px) {

    	.menu-items,
    	.timetable-rows {
    		flex-direction: column;
    		align-items: center;
    	}

    	.hero h1 {
    		font-size: 2.2rem;
    	}
    }