/* /* /* /* /* Google fonts */

@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@200;300;400;500;600;700&family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    scroll-padding-top: 3rem;
}

.parisienne-regular {
    font-family: "Parisienne", cursive;
    font-weight: 400;
    font-style: normal;
}

:root {
    --menu-card: #354D9F;
    --menu-section: #f9f9f9;
    --brown: #4b1204;
    --about-section: #2c3e50;
    --yellow-color: #eb960e;
    --text-color: #121212;
    --contain-color: #ffffff;
    --main-color: #73CCF3;
    --bg-color: #fff;
    --btn-color: #000000;
    --text-after-color: #000000;
    --gradient: linear-gradient(to right, var(--menu-card), var(--main-color));
    --font-family-1: "Mitr", sans-serif;
    --font-family-2: "Righteous", sans-serif;
    --font-family-3: 'Pacifico', cursive;
    --font-family-4: 'Masiku', ttf;
    --font-family-5: "Parisienne", cursive;

    --background-color: #1c222c;
}

body {
    color: var(--text-color);
    background: var(--bg-color);
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

section {
    padding: 3rem 0 2rem;
}

/* ----------------------Navbar----------------------- */

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
header {
    font-family: var(--font-family-1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gradient);
    z-index: 100;
    padding: 10px 0;
    transition: background 0.3s ease-in-out;
}

.heading {
    color: var(--main-color);
}

/* Change header background on scroll */
header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    /* Solid dark background when scrolled */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /* Optional: Add shadow on scroll */
}

/* Logo */
.logo {
    max-width: 100px;
}

/* Nav container */
.nav {
    display: flex;
    justify-content: space-between;
    /* Maintain space between items */
    align-items: center;
    padding: 0 20px;
    width: 100%;
    /* Ensure full width */
}

/* Navbar links */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
    /* Allow navbar links to take available space */
}

/* Nav Links */
.nav-links {
    font-size: 1rem;
    color: var(--main-color);
    -webkit-text-stroke: .50px black;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px;
    transition: color 0.3s ease-in-out;
}

.nav-links:hover {
    color: var(--menu-card);
    /* Gold color */
}

/* Order Now button */
.order-link {
    background: var(--bg-color);
    color: var(--btn-color);
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.order-link:hover {
    background: var(--main-color);
    /* Change to gold on hover */
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    /* Hide by default */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    width: 40px;
    /* Set a fixed width */
    height: 40px;
    /* Set a fixed height */
}

/* Bar styling */
.menu-toggle .bar {
    height: 4px;
    /* Set bar height */
    width: 30px;
    /* Set bar width */
    background-color: var(--bg-color);
    /* Set bar color */
    margin: 4px 0;
    /* Space between bars */
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* Smooth transition */
}

/* Align bars to the center */
.menu-toggle .bar:nth-child(1),
.menu-toggle .bar:nth-child(2),
.menu-toggle .bar:nth-child(3) {
    position: absolute;
}

/* Bar Positioning */
.menu-toggle .bar:nth-child(1) {
    top: 8px;
    /* Top position */
}

.menu-toggle .bar:nth-child(2) {
    top: 16px;
    /* Middle position */
}

.menu-toggle .bar:nth-child(3) {
    top: 24px;
    /* Bottom position */
}

/* Toggle menu active state */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    /* Rotate top bar */
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    /* Hide middle bar */
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    /* Rotate bottom bar */
}

/* Responsive Styles */
@media (max-width: 768px) {

    /* Show menu toggle button only on mobile */
    .menu-toggle {
        display: flex;
        /* Display menu toggle button */

    }

    /* Hide navbar links and set the layout */
    .navbar {
        display: none;
        /* Hide navbar */
        flex-direction: column;
        /* Stack links vertically */
        position: absolute;
        top: 60px;
        /* Position below the header */
        right: 0;
        /* Align to the right */
        background: rgba(0, 0, 0, 0.9);
        /* Dark background */
        width: 100%;
        padding: 20px;
        z-index: 99;
        /* Ensure it appears on top */
    }

    /* Show navbar when active */
    .navbar.active {
        display: flex;
    }

    /* Mobile Order Button */
    .mobile-order {
        display: inline-block;
        /* Display the button */
        background: var(--main-color);
        /* Set the background to main color */
        color: var(--bg-color);
        /* White text */
        padding: 5px 10px;
        /* Decrease padding to make button smaller */
        margin-left: auto;
        /* Push button to the right */
        margin-right: 10px;
        /* Increase space to the right of the button */
    }

    /* Hide the desktop 'Order Now' button on mobile */
    .desktop-order {
        display: none;
        /* Hide the desktop button */
    }

    /* Align the nav and toggle button */
    .nav {
        justify-content: flex-end;
        /* Align nav items to the right */
        padding: 0 10px;
    }

    /* Menu Toggle Position */
    .menu-toggle {
        order: 2;
        /* Position menu toggle after 'Order Now' */
    }

    /* Adjust order of elements */
    .navbar,
    .mobile-order {
        order: 1;
        /* Place them at the start */
    }
}

/* Desktop View */
@media (min-width: 769px) {

    /* Show the navbar links */
    .navbar {
        display: flex;
        /* Display navbar on desktop */
    }

    /* Hide menu toggle button on desktop */
    .menu-toggle {
        display: none;
        /* Hide on desktop */
    }

    /* Hide the mobile 'Order Now' button */
    .mobile-order {
        display: none;
        /* Hide the mobile button */
    }

    /* Show the desktop 'Order Now' button */
    .desktop-order {
        display: inline-block;
        /* Show the desktop button */
    }
}

/* ----------------------Navbar End----------------------- */




/* -------------Hero Section------------ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 2rem;
}

.hero {
    font-family: var(--font-family-2);
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    color: var(--bg-color);
    /* Default text color */
    text-align: center;
    /* Center align text */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    /* Adjust opacity for the gradient */
    z-index: 1;
    /* Ensures the gradient is above the background but below the content */
}


.hero-content {
    position: relative;
    z-index: 2;
    /* Ensure content is above the overlay */
    max-width: 800px;
    padding: 20px;
    text-align: center;
    /* Center align the text within the content */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 45px;
    /* Adjusted margin */
}


.hero .order-now-btn {
    font-family: var(--font-family-2);
    padding: 15px 30px;
    background: var(--bg-color);
    color: var(--btn-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
    margin-top: 20px;
    cursor: pointer;
    /* Add margin-top to create space */
}

.hero .order-now-btn:hover {
    background: var(--main-color);
    /* Change to your desired hover color */
    color: var(--bg-color);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        /* Adjust height to content size */
        padding: 40px 20px;
        /* Add padding around the content */
    }

    .hero h1 {
        font-size: 2rem;
        /* Decrease font size for mobile */
        margin-bottom: 15px;
        /* Reduce margin */
    }

    .hero p {
        font-size: 1rem;
        /* Decrease font size for mobile */
        margin-bottom: 25px;
        /* Reduce margin */
    }

    .hero-list {
        font-size: 0.9rem;
        /* Reduce font size for list items */
        margin: 15px 0 25px 0;
    }

    .hero .order-now-btn {
        padding: 12px 20px;
        /* Reduce padding for the button */
        font-size: 1rem;
        /* Decrease button font size */
    }
}

/* -------------Hero Section End------------ */



/* ------------- Services Section ------------ */

.services {
    padding: 80px 20px;
    background: var(--gradient);
    /* Cool Blue Gradient */
    color: var(--bg-color);
    text-align: center;
    font-family: var(--font-family-2);
    overflow: hidden;
    position: relative;
}

.services::before,
.services::after {
    content: '';
    position: absolute;
    z-index: 0;
    animation: spinEffect 6s linear infinite;
    background-size: contain;
    background-repeat: no-repeat;
}

.services::before {
    top: -100px;
    left: -100px;
    width: 250px;
    height: 250px;

}

.services::after {
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    animation: spinEffectReverse 6s linear infinite;
}

/* Adjusted spinning effect */
@keyframes spinEffect {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinEffectReverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-heading {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--bg-color);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

.section-description {
    font-size: 1.3rem;
    color: var(--contain-color);
    margin-bottom: 50px;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Service Cards */
.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-card {
    background: linear-gradient(to bottom right, #ffffff, #ffe6d5);
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    width: 320px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 4rem;
    color: var(--main-color);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.2);
}

.service-title {
    font-size: 1.8rem;
    color: var(--about-section);
    margin-bottom: 15px;
    font-weight: bold;
}

.service-description {
    font-size: 1.1rem;
    color: var(--about-section);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
    }

    .section-heading {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

/* ------------- End Hot & Crispy Services Section ------------ */
/* Styling for About Section */
#about {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/about-us.jpg') no-repeat center center/cover;
    max-height: 100vh;
    color: white;
}

.about-section .content-container {
    background: linear-gradient(to bottom, #000000, #0e1317);
    /* Cool Blue Gradient */
    padding: 50px;
    border-radius: 10px;
    max-width: 800px;
    /* Increased the width */
    text-align: center;
    /* Center text inside */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: var(--font-family-2);
    color: var(--main-color);
    /* Gold color */
    font-weight: bold;
}

.about-section h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--main-color);
    font-weight: bold;
}

.about-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: var(--font-family-2);
}

.about-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.about-section ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.order-now-button {
    font-family: var(--font-family-2);
    padding: 12px 30px;
    font-size: 1.2em;
    background-color: var(--main-color);
    /* Gold background */
    color: var(--btn-color);
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    /* Ensure button is inline */
    margin-top: 20px;
    /* Space between the paragraph and the button */
}

.order-now-button:hover {
    background-color: var(--menu-card);
    /* Lighter gold on hover */
}

/* Menu Section CSS */
.menu-section {
    padding: 0 !important;
    padding: 50px;
    background-color: var(--menu-section);
    text-align: center;
    font-family: var(--font-family-2);
}

.menu-header h2 {
    font-size: 36px;
    color: var(--background-color);
}

.menu-header p {
    font-size: 18px;
    color: var(--main-color);
}

.menu-cards-container {

    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.menu-card {

    background: var(--bg-color);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    padding: 20px;
}

.menu-card-description .menu-sec {
    color: var(--main-color);
}

.menu-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.menu-card-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.menu-card-title {
    font-size: 22px;
    color: var(--background-color);
    margin-bottom: 10px;
}

.menu-card-description {
    font-size: 16px;
    color: var(--about-section);
    margin-bottom: 15px;
}

.menu-card-price {
    font-size: 18px;
    color: var(--background-color);
    font-style: italic;
}

.menu-card-btn {
    font-family: var(--font-family-2);
    background: var(--main-color);
    color: var(--contain-color);
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.menu-card-btn:hover {
    background: var(--btn-color);
}




/*--------------------------------------------------------------
# TimeTable
--------------------------------------------------------------*/
/* TimeTable Section Styling */
.container-time {
    background: linear-gradient(to bottom, #000000, #0e1317);

}

.timetable .section-title {
    text-align: center;
    display: block;
    color: var(--main-color);
    width: 100%;
    padding: 10px;
    margin-top: 0px;
}

.container-time {
    background-color: var(--background-color);
}

.timetable-container {
    font-family: var(--font-family-2);
    width: 100%;
    max-width: 950px;
    margin: 7px auto;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    /* Include padding in the total width and height */
}

.heading-wrap {
    width: 100%;
    margin-bottom: 20px;
}

.timetable-rows {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
}

.timetable-column {
    flex: 1;
    width: 700px;
}

.timetable-table {
    padding: 5px 5%;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid var(--main-color);
    color: var(--bg-color);
    /* Change text color to white */
}

/* Updated table headers with border color */
table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Righteous', sans-serif;
    text-align: center;
    padding: 0.6em;
    border-bottom: 3px solid var(--main-color);
    background-color: var(--main-color);
    color: var(--bg-color);
    border-radius: 10px;
}

/* Updated table cells with border color */
table.amrt-timetable-table td.amrt-value-td span.amrt-time-slot {
    border: 10px solid var(--main-color);
    /* Update border color here */
    color: var(--bg-color);
    /* Change text color to white */
}

/* Other styling */
.timetable-tagline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    color: var(--main-color);
}

@media (max-width: 768px) {
    .timetable-container {
        padding: 10px;
        background-color: var(--background-color);
        /* Ensure background color is responsive */
        min-height: auto;
        /* Remove the full viewport height restriction on smaller screens */
    }

    .timetable-rows {
        flex-direction: column;
        gap: 30px;
    }

    .timetable-column {
        width: 100%;
    }

    .timetable-table {
        padding: 10px;
        margin-bottom: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    }

    table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
        font-size: 1rem;
        padding: 0.5em;
    }

    table.amrt-timetable-table td.amrt-value-td span.amrt-time-slot {
        border-width: 5px;
        color: white;
        background: var(--gradient) !important;
    }

    .timetable-tagline {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .timetable-rows {
        gap: 20px;
    }

    table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
        font-size: 0.9rem;
    }

    .timetable-tagline {
        font-size: 0.8rem;
    }

    .timetable-container h2:before {
        width: 60px;
    }
}

/*--------------------------------------------------------------
#END
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/

#location-section {
    padding: 20px 0;
    text-align: center;
}

.location-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.heading-wrap {
    margin-bottom: 20px;
}

.banner {
    font-family: var(--font-family-2);
    font-size: 2rem;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.562);
    /* Adding shadow */
    border-radius: 10px;
    /* Optional: to give the map rounded corners */
    overflow: hidden;
    /* Ensures the map stays within rounded corners */
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
    /* Ensure iframe fits the container's rounded corners */
}


/*--------------------------------------------------------------
# Location Section End
--------------------------------------------------------------*/
/* Footer Styles */
.footer {
    background: linear-gradient(to bottom, #000000, #0e1317);
    /* Cool Blue Gradient */
    color: var(--bg-color);
    padding: 40px 0;
    font-family: var(--font-family-2);
    text-align: center;
    /* Center all text inside the footer */
}

.footer-container {
    display: flex;
    justify-content: center;
    /* Center the entire container */
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    /* Center the container */
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px 0;
    /* Updated margin to be consistent */
    text-align: center;
    /* Center each column */
}

.footer-logo {
    max-width: 350px;
    margin: 0 auto 20px;
    /* Centered logo with margin adjustment */
    font-size: 30px;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    /* Center social icons */
    align-items: center;
    margin: 20px 0;
}

.footer-social-icons a {
    color: var(--bg-color);
    margin: 0 10px;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--main-color);
    /* Change this to your desired hover color */
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    /* Center align the heading */
    display: inline-block;
    /* Ensure it centers properly */
    width: 100%;
    /* Make the heading span across the entire width */
}

.footer-column p,
.footer-column ul {
    font-size: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--bg-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--main-color);
}

.footer-column ul li i {
    margin-right: 10px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    color: var(--main-color);
}

.footer-bottom a:hover {
    color: var(--menu-card);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        margin: 0 auto;
        /* Ensure container is centered */
        text-align: center;
    }

    .footer-column {
        margin: 0 0 20px 0;
        /* Center columns */
    }

    .footer-social-icons {
        justify-content: center;
        /* Center social icons */
    }

    .footer-bottom {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .footer-column {
        margin: 10px 0;
        /* Adjusted margin for smaller screens */
        min-width: unset;
        /* Remove min-width to allow better stacking */
    }

    .footer-column ul li {
        font-size: 12px;
        margin-bottom: 8px;
        /* Adjusted spacing */
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-social-icons a {
        font-size: 16px;
        /* Reduced icon size for better fit */
        margin: 0 5px;
        /* Reduced margin between icons */
    }
}