/* /* /* /* /* Google fonts */

@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@200;300;400;500;600;700&family=Righteous&display=swap');

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    scroll-padding-top: 3rem;
}

:root {
    --brown: #4b1204;
    --yellow-color: #FEF100;
    --text-color: #121212;
    --contain-color: #ffffff;
    --main-color: #363636;
    --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;
    --background-color: #1c222c;
    --gradient: linear-gradient(45deg, var(--main-color), var(--yellow-color));
    --hover-gradient: linear-gradient(90deg, var(--yellow-color), var(--main-color));
}

body {
    color: var(--text-color);
    background: var(--bg-color);
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

section {
    padding: 3rem 0 2rem;
}



/* ---------------------------------------Nav-bar--------------------------------------- */

/* -------------Nav-bar------------ */
/* Container */
.container {
    max-width: 1400px;
    margin: auto;
}

/* Header */
header {
    font-family: var(--font-family-2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.575);
    /* Make navbar transparent */
    z-index: 100;
    text-align: center;
    /* Center align everything inside the header */
    padding-top: 10px;
    /* Add padding to create space above the logo */
}

/* Logo */
.logo {
    max-width: 100px;
}

/* Navbar */
.nav {
    display: flex;
    justify-content: center;
    /* Center navbar items */
    align-items: center;
    padding: 8px 0;
    flex-direction: column;
    /* Stack logo and navbar items */
}

.navbar {
    width: 100%;
    border-top: 2px solid rgba(255, 255, 255, 0.24);
    /* 2px border at the top */
    border-bottom: 2px solid rgba(255, 255, 255, 0.24);
    /* 2px border at the bottom */
    display: flex;
    justify-content: center;
    /* Center the navbar items */
    flex-wrap: wrap;
    /* Allow wrapping for responsiveness */
}

/* Nav Links */
.nav-links {
    font-size: 1.20rem;
    color: var(--yellow-color);
    padding-bottom: 0.25rem;
    /* Space for the underline */
    padding: 13px;
    margin: 5px;
    position: relative;
    overflow: hidden;
    /* Ensure the pseudo-element stays within bounds */
    transition: color 0.3s cubic-bezier(0.075, 0.82, 0.165, 1), background-color 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-links::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    /* Adjust based on underline thickness */
    width: 0;
    height: 2px;
    background-color: var(--bg-color);
    /* Same as text color */
    transition: width 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-links:hover::before {
    width: 100%;
    /* Expand underline width on hover */
}

.nav-links:hover {
    /* Highlight with a gold color */
    background-color: rgba(255, 255, 255, 0.1);
    /* Subtle background change on hover */
    border-radius: 4px;
    /* Optional: Rounded corners */
}

/* Highlighting the "Order Now" button */
.order-link {
    font-family: var(--font-family-2);
    max-width: 120px;
    padding: 12px 10px;
    border-radius: 4px;
    background: rgb(255, 255, 255);
    cursor: pointer;
    color: var(--btn-color);
    /* Ensure text color is set */
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.order-link::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    /* Thicker underline for emphasis */
    background-color: var(--main-color);
    /* Gold color for highlight */
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

.order-link:hover::before {
    width: 100%;
    /* Expand underline width on hover */
}

.order-link:hover {
    background-color: var(--main-color);
    /* Highlight button with gold background */
    color: var(--bg-color);
    /* Change text color to white */
    border-radius: 4px;
    /* Ensure rounded corners are maintained */
}

/* Responsive Adjustments */
@media (max-width: 770px) {
    .navbar {
        flex-direction: column;
        /* Stack navbar items vertically on small screens */
        padding-top: 10px;
        /* Adjust padding for mobile */
    }

    /* Adjust logo */
    .logo {
        display: block;
        margin-bottom: 15px;
        /* Add spacing under logo */
        font-size: 1.5rem;
        /* Adjust font size for mobile */
    }

    /* Hide all navbar links except the "Order Now" button on mobile devices */
    .nav-links {
        display: none;
    }

    /* Center the "Order Now" button on mobile devices */
    .order-link {
        display: block;
        margin: 10px auto;
        /* Center the button */
    }
}


/* Menu Toggle */
.menu-toggle {
    display: none;
    /* Hidden by default */
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 5px;
    /* Increased height for better visibility */
    width: 30px;
    /* Increased width */
    background-color: white;
    /* Bars are white */
    margin: 4px 0;
    /* Slightly increased margin */
    transition: all 0.3s ease;
}

/* Show close icon when menu is active */
.menu-toggle.active .bar {
    display: none;
    /* Hide bars when menu is active */
}

.menu-toggle.active #close-icon {
    display: block;
    /* Show the close icon when active */
}

/* Hide the close icon when menu is not active */
#close-icon {
    display: none;
    /* Hidden by default */
}

/* Responsive Adjustments */
@media (max-width: 770px) {
    .menu-toggle {
        display: flex;
        /* Show menu toggle button on mobile */
        position: absolute;
        right: 20px;
        /* Positioning on the right side */
        top: 20px;
        /* Positioning from the top */
        z-index: 200;
        /* Ensure it’s above other elements */
    }

    .navbar {
        display: none;
        /* Hide navbar by default on mobile */
        flex-direction: column;
        /* Stack navbar items vertically on small screens */
        padding-top: 10px;
        /* Adjust padding for mobile */
    }

    .navbar.active {
        display: flex;
        /* Show navbar when active */
    }

    /* Show all navbar links on mobile devices */
    .nav-links {
        display: block;
        /* Display all navbar links */
        color: white;
        /* Change nav link color to white */
        font-size: 1.2rem;
        /* Adjust size of nav links */
        padding: 10px;
        /* Add padding for spacing */
        text-align: center;
        /* Center text */
    }

    /* Center the "Order Now" button on mobile devices */
    .order-link {
        display: block;
        margin: 10px auto;
        /* Center the button */
        color: #000000;
    }
}


/* ---------------------------------------Nav-bar End--------------------------------------- */

/* -------------Hero Section------------ */
.hero {
    background: url(../images/hero.jpg) center center/cover no-repeat;
    font-family: var(--font-family-2);
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color);
    /* Default text color */
    text-align: center;
    /* Center text */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Black overlay with 60% opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Ensure content is above the overlay */
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.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;
}

.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: 30px;
        /* Reduce margin */
    }

    .hero .order-now-btn {
        padding: 12px 20px;
        /* Reduce padding for the button */
        font-size: 1rem;
        /* Decrease button font size */
    }
}

/* -------------Hero Section End------------ */



/* Section Divider (Horizontal) */
.section-divider-horizontal {
    font-family: var(--font-family-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    margin-top: -10px;
    text-align: center;
    width: 400px;
    max-width: 100%;
}

.section-divider-horizontal .divider-line {
    flex: 1;
    height: 2px;
    background-color: var(--main-color);
}

.section-divider-horizontal .divider-heading {
    display: flex;
    align-items: center;
    /* Center the text vertically */
    justify-content: center;
    margin: 0 20px;
    font-size: 1.8rem;
    color: var(--main-color);
}

.divider-icon {
    margin: 0 5px;
    /* Space around the icon */
    font-size: 1.5rem;
    /* Adjust the size of the icons */
    color: var(--main-color);
}


/* Section Divider (Vertical Column) */
.section-divider-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    max-width: 10%;
}

.section-divider-vertical .divider-line {
    width: 2px;
    height: 50px;
    background-color: var(--main-color);
}

.section-divider-vertical .divider-icon {
    font-size: 1.5rem;
    color: var(--main-color);
    margin: 10px 0;
}

/* About Section */
.about-section {
    font-family: var(--font-family-2);
    padding: 60px 20px;
    background-color: var(--bg-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    max-width: 30%;
    margin: auto;
}

.food-allrgy {
    color: var(--main-color);
}

.about-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-description {
    margin: auto;
    flex: 1;
    max-width: 50%;
    padding: 20px;
}

.about-description h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-description p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.order-now-btn {
    font-family: var(--font-family-2);
    padding: 15px 30px;
    background: var(--gradient);
    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;
    display: inline-block;
    /* Ensure the button remains a block element */
}

.order-now-btn:hover {
    background: var(--hover-gradient);
    color: var(--bg-color);
}


/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-images {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .about-description {
        max-width: 100%;
    }

    .order-now-btn {
        display: block;
        /* Ensure the button is visible */
        margin: 20px auto 0;
        /* Center the button on mobile and add space at the top */
        padding: 10px 20px;
        font-size: 1rem;
    }

    .section-divider-vertical {
        max-width: 100%;
        margin: 20px 0;
        flex-direction: row;
    }

    .section-divider-horizontal {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px auto;
        text-align: center;
        width: 100%;
    }

    .section-divider-horizontal .divider-line {
        flex: 1;
        height: 2px;
        background-color: var(--main-color);
    }

    .section-divider-horizontal .divider-heading {
        margin: 0 10px;
        font-size: 1.5rem;
        color: var(--main-color);
    }

    .about-description h2 {
        font-size: 2rem;
    }

    .about-description p {
        font-size: 1rem;
    }
}

/*--------------------------- Menu --------------------------- */

/* Menu Section */
.menu_section {
    padding: 80px 0;
    background-color: var(--main-color);
}

.menu_section .section-divider-horizontal .divider-heading {
    color: var(--yellow-color);
}

.menu_section .section-divider-horizontal .divider-icon {
    color: var(--yellow-color);
}

.menu_section .section-divider-horizontal .divider-line {
    background-color: var(--yellow-color);
}

/* Container */
.menu_section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section Heading */
.menu_section .section-heading {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--background-color);
}

/* Filters Menu */
.menu_section .filters_menu {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    margin: 45px 0 20px 0;
}

.menu_section .filters_menu li {
    padding: 7px 25px;
    cursor: pointer;
    border-radius: 25px;
    background-color: var(--bg-color);
    margin: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.menu_section .filters_menu li:hover,
.menu_section .filters_menu li.active {
    background-color: var(--main-color);
    color: var(--bg-color);
}

/* Menu Items */
.menu_section .menu_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Box */
.menu_section .box {
    position: relative;
    width: calc(30% - 10px);
    background-color: var(--contain-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu_section .box:hover {
    transform: translateY(-10px);
}

/* Image Box */
.menu_section .img-box {
    background: var(--contain-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 215px;
    overflow: hidden;
    width: 100%;
}

/* Make the image smaller with padding */
.menu_section .img-box img {
    width: 80%;
    /* Reduce image width */
    height: auto;
    object-fit: contain;
    transition: transform 0.2s;
}

/* Detail Box */
.menu_section .detail-box {
    font-family: var(--font-family-1);
    padding: 25px;
    text-align: center;
}

.menu_section .detail-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--background-color);
}

.menu_section .detail-box p {
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--background-color);
}

.menu_section .detail-box h6 {
    margin-top: 10px;
    color: var(--yellow-color);
    font-weight: 700;
    font-size: 18px;
}

/* Order Now Button */
.menu_section .order-now-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--yellow-color);
    color: #ffffff;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s;
    text-decoration: none;
}

/* Center the Order Now button on hover */
.menu_section .order-now-btn:hover {
    background-color: #e69c00;
}

/* Button Box */
.menu_section .options {
    display: flex;
    justify-content: center;
    /* Center the button horizontally */
    padding: 0 25px 25px 25px;
}

/* If you have multiple buttons and want to space them */
.menu_section .options a {
    margin: 0 5px;
    /* Space out buttons if needed */
}

.menu_section .btn-box {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.menu_section .btn-box a {
    font-family: var(--font-family-1);
    display: inline-block;
    padding: 10px 55px;
    background-color: var(--yellow-color);
    color: var(--main-color);
    border-radius: 45px;
    transition: all 0.3s;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}

.menu_section .btn-box a:hover {
    background-color: var(--main-color);
    color: var(--yellow-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .menu_section .box {
        width: calc(33.333% - 20px);
        /* Adjust box width for medium screens */
    }
}

@media (max-width: 992px) {
    .menu_section .box {
        width: calc(50% - 20px);
        /* Adjust box width for smaller screens */
    }
}

@media (max-width: 768px) {
    .menu_section .box {
        width: calc(100% - 20px);
        /* Full width for very small screens */
    }

    /* Adjust padding and font sizes */
    .menu_section .section-heading {
        font-size: 28px;
    }

    .menu_section .filters_menu {
        flex-direction: column;
        margin: 20px 0;
    }

    .menu_section .filters_menu li {
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .menu_section .btn-box a {
        padding: 10px 30px;
        /* Adjust button padding for very small screens */
    }
}

/*--------------------------- End --------------------------- */




/* Service Section */
.service-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    font-family: var(--font-family-1);
}

.service-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.service-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-section .col {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

@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 */
.service-item {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 15px;
    padding-top: 15px;
}

.service-item h5 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.service-item p {
    text-align: center;
    color: #666;
    padding: 0 15px 15px;
    font-size: 1rem;
}

/* Service Icons */
.fa-user-tie,
.fa-utensils,
.fa-cart-plus,
.fa-headset {
    color: var(--main-color);
}



/*--------------------------------------------------------------
# TimeTable
--------------------------------------------------------------*/

.timetable .section-title {
    text-align: center;
    display: block;
    color: var(--main-color);
    width: 100%;
    padding: 10px;
    margin-top: 0px;
}

.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;
}

.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;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.562);
    border: 2px solid var(--yellow-color);
}

/* 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(--yellow-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 */
}

/* Other styling */
.timetable-tagline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    color: var(--main-color);
}

.timetable-container h2:before {
    width: 80px;
    height: 2px;
    background: var(--main-color);
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}


@media (max-width: 768px) {
    .timetable-container {
        padding: 10px;
    }

    .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;
    }

    .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;
    }
}

.heading-wrap {
    width: 100%;
    text-align: center;
    /* Center the text horizontally */
    position: relative;
    /* Ensure the pseudo-element aligns correctly */
    margin-bottom: 20px;
    /* Space below the heading */
}

.timetable-container h2 {
    position: relative;
    /* Make sure the position is relative for the pseudo-element */
    display: inline-block;
    /* Allows the element to be centered within the parent */
}

/* Optional: If you want the divider line to also center above and below the heading */
.timetable-container h2:before,
.timetable-container h2:after {
    content: "";
    display: inline-block;
    width: 30%;
    /* Adjust as necessary */
    height: 2px;
    background: var(--main-color);
    vertical-align: middle;
    /* Aligns the line vertically with the heading */
}

.timetable-container h2:before {
    margin-right: 10px;
    /* Space between the line and the heading */
}

.timetable-container h2:after {
    margin-left: 10px;
    /* Space between the heading and the line */
}


/*--------------------------------------------------------------
#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-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-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 {
    text-decoration: underline;
    color: var(--yellow-color);
}

.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;
}

/* 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(--yellow-color);
    list-style: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.hygiene {
    align-items: center;
    justify-content: center;
    display: flex;
}

.hygiene img {
    max-width: 200px;
}