/* /* /* /* /* 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:#EC1B23;
    --menu-section: #8BC53D;    
    --about-section: #2c3e50;
    --text-color: #121212;
    --contain-color: #ffffff;
    --main-color:   #D5D1CC;
    --bg-color: #fff;
    --btn-color: #000000;
    --text-after-color: #000000;
    --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(--main-color); /* Transparent background */
    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:#D8D2CD; /* 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(--menu-card);
    text-transform: uppercase;
    padding: 10px;
    transition: color 0.3s ease-in-out;
}

.nav-links:hover {
    color: var(--menu-section); /* Gold color */
}

/* Order Now button */
.order-link {
    background: var(--menu-section);
    color: var(--main-color);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.order-link:hover {
    background: var(--menu-card) /* 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(--menu-section); /* 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: #D8D2CD; /* Dark background */
        width: 100%;
        padding: 20px;
        z-index: 99; /* Ensure it appears on top */
    }

    /* Show navbar when active */
    .navbar.active {
        margin-top: 1.75em;
        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(--btn-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----------------------- */

/* ------------- Modern Hero Section ------------ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Hide overflow */
    background-size: cover; /* Ensure image covers the entire section */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent background repetition */
    font-family: var(--font-family-2);
    color: var(--bg-color); /* Text color */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay with 60% opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
    max-width: 600px; /* Reduce max-width */
    padding: 20px; /* Reduce padding */
    animation: slideUp 1s ease-in-out; /* Slide-up animation */
}

.hero h1 {
    font-size: 3rem; /* Decrease font size */
    margin-bottom: 10px; /* Reduce margin */
    letter-spacing: 2px; /* Reduce letter spacing */
    font-weight: 700; /* Bold heading */
}

.hero .highlight {
    color: var(--main-color); /* Highlight color for 'Difference!' */
    font-size: 3.5rem; /* Decrease size */
    text-transform: uppercase;
    font-family: var(--font-family-3);
}

.hero p {
    font-size: 1.1rem; /* Decrease font size */
    margin-bottom: 30px; /* Adjusted margin */
    line-height: 1.4; /* Adjust line height */
    color: var(--bg-color); /* Lighter text */
}

.hero .order-now-btn-hero {
    padding: 12px 30px; /* Reduce padding */
    background: var(--menu-card); /* Button color */
    color: var(--main-color); /* Button text color */
    border: none;
    border-radius: 50px; /* Rounded button */
    cursor: pointer;
    font-size: 1rem; /* Decrease font size */
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.hero .order-now-btn-hero:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Scroll Indicator Style */
.scroll-indicator {
    position: absolute;
    bottom: 20px; /* Position at the bottom of the hero section */
    left: 50%;
    transform: translateX(-50%);
    width: 20px; /* Reduce width */
    height: 40px; /* Reduce height */
    border: 2px solid var(--bg-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2; /* Ensure it is above the overlay */
}

.scroll-indicator span {
    width: 6px; /* Reduce width */
    height: 6px; /* Reduce height */
    background: var(--bg-color);
    border-radius: 50%;
    display: block;
    animation: scroll 1.5s infinite ease-in-out;
}

@keyframes scroll {
    0%, 20% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 100vh; /* Adjust height to content size */
        padding: 30px 15px; /* Add padding around the content */
    }

    .hero h1 {
        font-size: 2rem; /* Decrease font size for mobile */
        margin-bottom: 10px; /* Reduce margin */
    }

    .hero .highlight {
        font-size: 2.5rem; /* Adjusted size for mobile */
    }

    .hero p {
        font-size: 0.9rem; /* Decrease font size for mobile */
        margin-bottom: 20px; /* Reduce margin */
    }

    .hero .order-now-btn {
        padding: 10px 25px; /* Reduce padding for the button */
        font-size: 0.9rem; /* Decrease button font size */
    }

    .scroll-indicator {
        width: 15px; /* Reduce width */
        height: 30px; /* Reduce height */
    }

    .scroll-indicator span {
        width: 5px; /* Reduce width */
        height: 5px; /* Reduce height */
    }
}

                                                                                                                  
/* ---------------- Global Styles ---------------- */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: var(--font-family-2);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--background-color);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title h2 span {
  color: var(--btn-color);
  text-shadow: 2px 8px 8px var(--menu-card);
}

.divider {
    width: 100px;
    height: 5px;
    background: var(--main-color);
    margin-left: 0px;
}


/* ---------------- About Section ---------------- */

.about {
    padding: 80px 20px; /* Reduced padding for better spacing */
    background: var(--bg-color);
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px; /* Reduced gap for better spacing on smaller screens */
    flex-wrap: wrap; /* For responsive stacking */
}

.about-images {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Adjusted gap between image boxes */
    justify-content: center;
    max-width: 50%; /* Reduced width for better responsiveness */
}

.image-box {
    flex: 1 1 45%; /* Responsive basis */
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Reduced shadow for smaller screens */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-box img {
    width: 100%;
    height: 100%; /* Keep the height auto for responsiveness */
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Right Column: Text */
.about-text {
    max-width: 45%; /* Adjust width for responsiveness */
    text-align: left;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--about-section);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--background-color);
}

.image-box video{
    width: 100%;
    height: 100%; 
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.order-now-btn-about {
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--main-color), var(--menu-card));
    color: var(--btn-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.order-now-btn-about:hover{
    transform: scale(1.1);
}
/* Responsive Design for Different Breakpoints */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column; /* Stack items vertically */
        text-align: center; /* Center content */
        align-items: center;
    }

    .about-images,
    .about-text {
        max-width: 100%; /* Full width */
        margin-bottom: 30px; /* Add spacing */
    }

    .about-text {
        text-align: center; /* Center text for smaller screens */
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 40px 20px;
    }

    .about-images {
        gap: 10px; /* Reduced gap for smaller screens */
    }

    .about-text h3 {
        font-size: 1.6rem; /* Adjust font size for readability */
    }

    .about-text p {
        font-size: 0.95rem; /* Smaller text for readability */
    }

    .order-now-btn-about {
        padding: 10px 25px; /* Reduced padding */
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 60px 15px; /* Reduced padding for very small screens */
    }

    .about-content {
        flex-direction: column; /* Stack items vertically */
        gap: 20px; /* Reduced gap for better spacing */
    }

    .about-images {
        max-width: 100%; /* Full width */
        flex-direction: column; /* Stack images vertically */
    }

    .image-box {
        flex: 1 1 100%; /* Full width for images */
        margin-bottom: 15px; /* Spacing between images */
    }

    .about-text {
        max-width: 100%; /* Full width */
    }

    .about-text h3 {
        font-size: 1.4rem; /* Smaller font size */
    }

    .about-text p {
        font-size: 0.85rem; /* Adjust text size */
        margin-bottom: 20px; /* Adjust spacing */
    }

    .order-now-btn-about {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}
/* ====================== Menu ================================ */

/* Menu Section Styles */
.menu-section {
    position: relative;
    padding: 50px 20px; /* Adjusted padding for smaller screens */
    color: var(--bg-color); /* Text color */
    min-height: auto; /* Ensure section covers the full viewport height */
    overflow: hidden; /* Hide overflow for background image */
}

/* Background Image Styles */
.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; /* Place background behind overlay */
}

/* Background Overlay Styles */
.menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay color */
    z-index: -1; /* Place overlay above the background */
}

/* Menu Title Styles */
.menu-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 30px; /* Space between items */
    max-width: 1200px; /* Limit the width of the menu container */
    margin: 0 auto; /* Center the container */
}

.menu-item {
    display: flex; /* Use flexbox for horizontal alignment */
    background-color: var(--bg-color); /* White background for menu items */
    border: 1px solid #ddd; /* Add border to each item */
    border-radius: 10px;
    overflow: hidden; /* Prevent overflow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

.menu-item:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.menu-image {
    flex: 1.5; /* Allow image section to take space */
    min-width: 150px; /* Minimum width for image */
    max-width: 300px; /* Limit the maximum width of the image */
}

.section-title .menu-heading{
    color: var(--main-color);
}

.menu-image img {
    width: 100%; /* Make image take the full width of the container */
    height: 100%; /* Ensure height covers the container */
    object-fit: cover; /* Cover the area without distortion */
    border-top-left-radius: 10px; /* Round top corners */
    border-top-right-radius: 10px; /* Round top corners */
}

.menu-details {
    flex: 1.25; /* Allow details section to take more space */
    padding: 20px;
    text-align: left; /* Left align text */
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-title {
    font-size: 1.6rem;
    margin: 10px 0;
    color: var(--btn-color); /* Use a warm color for titles */
    font-weight: bold; /* Bold titles for emphasis */
}

.menu-description {
    font-size: 1rem;
    color: var(--menu-card); /* Medium gray for description text */
    margin: 5px 0;
}

.menu-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--main-color); /* Same warm color for price */
}

.menu-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: var(--menu-section); /* Matching button color */
    color: var(--main-color);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

.menu-btn:hover {
    background-color: var(--menu-card); /* Darker button color on hover */
    transform: translateY(-2px); /* Slight upward movement on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-container {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    
    .menu-item {
        flex-direction: column; /* Stack image and details on mobile */
        align-items: center; /* Center align */
    }

    .menu-image {
        min-width: 100%; /* Allow full width for image */
    }

    .menu-title {
        font-size: 1.4rem; /* Smaller title size on mobile */
    }

    .menu-description {
        font-size: 0.9rem; /* Smaller description size on mobile */
    }

    .menu-price {
        font-size: 1rem; /* Smaller price size on mobile */
    }
}

/* Order Now Button Styles */
.order-now-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--main-color);
    color: var(--btn-color);
    text-align: center;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    transition: background 0.3s ease;
    cursor: pointer;
    margin-right: 670px;
}

/* Hover effect */
.order-now-btn:hover {
    background: var(--menu-card);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-background {
        height: 100vh; /* Set height to full viewport height on mobile devices */
    }
    .menu-title {
        margin-bottom: 5px; /* Add space below title */
    }
    .section-title-menu {
        width: 100%;
        margin-right: 0; /* Remove margin on smaller screens */
    }
    .menu-list li {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the start */
    }
    .order-now-btn {
        margin-top: 10px; /* Add space above the button */
        width: 100%; /* Full width on mobile */
    }
    .menu-content {
        padding: 15px; /* Adjust padding */
    }
}

@media (max-width: 480px) {
    .menu-title {
        font-size: 2.5rem; /* Adjust title font size */
    }

    .menu-list li {
        font-size: 1.2rem; /* Smaller font size for items */
    }

    .order-now-btn {
        font-size: 0.9rem; /* Adjust font size */
        padding: 6px 12px; /* Adjust padding */
    }

    .menu-content {
        padding: 10px; /* Adjust padding */
    }

    /* Ensure full height for smaller screens */
    .menu-background {
        height: 100vh; /* Full height on smaller screens */
    }
}

/* ====================== Menu End ================================ */






/*====================== Service Section ========================= */
.service-section {
    padding: 80px 0;
    background-color: var(--contain-color);
    font-family: var(--font-family-1);
    position: relative;
}

/* Adding a section title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--background-color);
    font-weight: 700;
}

.section-title p {
    font-size: 1rem;
    color: var(--about-section);
}

/* Container Styles */
.service-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Flexbox Row for Service Items */
.service-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Service Column Styles */
.service-section .col {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

@media (min-width: 576px) {
    .service-section .col {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (min-width: 992px) {
    .service-section .col {
        flex: 1 1 22%;
        max-width: 22%;
    }
}

/* Service Item Styles */
.service-item {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    padding: 30px 20px;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 15px;
}

.service-item h5 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1rem;
    color: var(--background-color);
}

/* Service Item Icon Colors */
.fa-user-tie,
.fa-utensils,
.fa-cart-plus,
.fa-headset {
    color: var(--main-color);
}

/* Responsive styles */
@media (max-width: 768px) {
    .service-item h5 {
        font-size: 1.4rem;
    }

    .service-item p {
        font-size: 0.9rem;
    }
}





/*--------------------------------------------------------------
# TimeTable
--------------------------------------------------------------*/

.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;
    margin-top: -50px;
    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(--menu-card);
    color: var(--main-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(--btn-color); /* Change text color to white */
    background-color: var(--main-color);
    box-shadow: 0 4px 8px rgba(230, 230, 230, 0.25);
}

/* 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; /* Ensure text color is white on smaller screens */
    }

    .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-section .banner{
    color: var(--menu-section);
}

.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-color: var(--background-color);
    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-column i{
    color: var(--menu-card);
  }
  
  .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(--menu-section);
  }
  
  .footer-column ul li i {
    margin-right: 10px;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    padding: 20px 0;
    background-color: var(--background-color);
  }
  
  .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 */
    }
  }
  
  .footer-bottom a {
    color: var(--main-color);
}

.footer-bottom a:hover {
    color: var(--menu-card);
}
