/* /* /* /* /* 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;
}
@font-face {
    font-family: 'Masiku';
    src: url('fonts/Masiku.ttf') format('truetype'); /* Adjust the path as necessary */
    font-weight: normal;
    font-style: normal;
}

:root{
    --menu-section: #f9f9f9;    
    --brown: #4b1204;
    --about-section: #2c3e50;
    --yellow-color: #eb960e;
    --text-color: #C0A052;
    --contain-color: #ffffff;
    --main-color:   #46413E;
    --bg-color: #fff;
    --btn-color: #35312e;
    --text-after-color: #35312e;
    --font-family-1: "Mitr", sans-serif;
    --font-family-2: "Righteous", sans-serif;
    --font-family-3: 'Pacifico', cursive;
    --font-family-4: 'Masiku' , ttf;
    --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: rgba(0, 0, 0, 0.7); /* Transparent background */
    z-index: 100;
    padding: 10px 0;
    transition: background 0.3s ease-in-out;
}

.heading{
    color: var(--text-color);
}

/* Change header background on scroll */
header.scrolled {
      background: url(../images/Screenshot\ 2025-08-06\ 154118.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* Logo */
.logo {
   max-width: 50px;
}

/* Nav container */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar links */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Nav Links */
.nav-links {
    font-size: 1rem;
    color: var(--bg-color);
    text-transform: uppercase;
    padding: 10px;
    transition: color 0.3s ease-in-out;
}

.nav-links:hover {
    color: var(--text-color); 
    background-color: var(--main-color);
    border-radius:  6px;
}

/* Order Now button */
.order-link {
    background: var(--bg-color);
    color: var(--btn-color);
    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 */
    color: var(--bg-color);
}

/* 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 */
        margin-left: auto; /* Push menu toggle to the right */
    }

    /* 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;
        margin-top: 2rem;
    }

    /* Order Now button on mobile */
    .mobile-order {
        margin-left: 10px; /* Space between menu toggle and button */
        background: var(--main-color); /* Set the background to main color */
        color: var(--bg-color); /* White text */
        padding: 10px 15px; /* Increase padding */
        text-align: center; /* Center align the button */
        display: inline-block; /* Show the button on mobile */
    }

    /* Menu Toggle Position */
    .menu-toggle {
        margin-left: auto; /* Push menu toggle to the right */
    }

    /* Logo and Menu Toggle alignment */
    .nav {
        justify-content: space-between;
        align-items: center;
    }

    /* Adjust order of elements */
    .navbar,
    .mobile-order {
        order: 2; /* Place them after the logo */
    }
}

/* 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 */
    }
}

/* Desktop Order Button */
.desktop-order {
    display: none; /* Hide by default */
    cursor: pointer;
}

/* Mobile Order Button */
.mobile-order {
    display: none; /* Hide by default */
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Show the mobile 'Order Now' button */
    .mobile-order {
        margin-left: 10px; /* Space between menu toggle and button */
        background: var(--main-color); /* Set the background to main color */
        color: var(--bg-color); /* White text */
        padding: 10px 15px; /* Increase padding */
        text-align: center; /* Center align the button */
        display: inline-block; /* Show the button on mobile */
    }

    /* Hide desktop 'Order Now' button */
    .desktop-order {
        display: none; /* Hide on mobile view */
    }
}

@media (min-width: 769px) {
    /* Show desktop 'Order Now' button */
    .desktop-order {
        display: inline-block; /* Show on desktop */
        background: var(--bg-color);
        color: var(--btn-color);
        padding: 10px 20px;
        border-radius: 5px;
        transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    }

    .desktop-order:hover {
        background: var(--main-color); /* Change to gold on hover */
        color: var(--bg-color);
    }

    /* Hide mobile 'Order Now' button */
    .mobile-order {
        display: none; /* Hide on desktop view */
    }
}

/* ----------------------Navbar End----------------------- */

 
/* -------------Hero Section------------ */
.hero {
    font-family: var(--font-family-2);
    position: relative;
    width: 100%;
    height: 80vh; /* 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: 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;
    text-align: center; /* Center align the text within the content */
}

.hero h3{
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
    color: var(--text-color);
}

.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; /* 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------------ */


/* --------------------------Burger-Themed About Section-------------------------- */
.burger-about-section {
    font-family: var(--font-family-2);
    padding: 100px 20px;
    background: url(../images/Screenshot\ 2025-08-06\ 154118.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--bg-color);
    text-align: center;
}

.burger-section-header h2 {
    font-size: 2.8rem;
    color: var(--bg-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.burger-section-header p {
    font-size: 1.2rem;
    color: var(--bg-color);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Burger Image Box */
.burger-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}

.burger-image-box img.burger-main-image {
    max-width: 50%;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.burger-image-box img.burger-main-image:hover {
    transform: scale(1.05);
}

.burger-info-box {
    position: absolute;
    top: 10%;
    left: 10%;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    max-width: 250px;
    text-align: left;
}

.burger-info-box h3 {
    font-size: 1.5rem;
    color: #ffbe76;
    margin-bottom: 10px;
}

.burger-info-box p {
    font-size: 1rem;
    color: var(--bg-color);
}

/* Ingredient Icons */
.burger-ingredients {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping of icons */
    gap: 20px; /* Reduce gap between items */
    margin-bottom: 50px;
}

.ingredient-item {
    text-align: center;
    flex: 0 1 80px; /* Flex-grow and shrink */
}

.ingredient-item img {
    max-width: 100%; /* Responsive width */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 10px;
}

.ingredient-item p {
    font-size: 1rem;
    color: var(--bg-color);
    font-weight: 500;
}

/* Burger Description */
.burger-about-description {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.burger-about-description h3 {
    font-size: 2rem;
    color: #ffbe76;
    margin-bottom: 20px;
}

.burger-about-description p {
    font-size: 1.1rem;
    color: var(--bg-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Order Now Button */
.burger-order-now-btn {
    font-family: 'Poppins', sans-serif;
    padding: 15px 30px;
    background: var(--main-color);
    color: var(--bg-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
}

.burger-order-now-btn:hover {
    background: var(--btn-color);
    transform: translateY(-5px);
}

/* Responsive Design Adjustments */
@media (max-width: 992px) {
    .burger-image-box {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .burger-info-box {
        position: relative;
        top: 0;
        left: 0;
        max-width: 90%; /* Increased width for smaller screens */
        text-align: center;
        margin: 0 auto; /* Center the info box */
    }

    .burger-about-description {
        padding: 20px 15px;
    }

    .burger-order-now-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Additional Responsive Adjustments for Mobile Devices */
@media (max-width: 768px) {
    .burger-section-header h2 {
        font-size: 2.5rem; /* Smaller heading */
    }

    .burger-section-header p {
        font-size: 1rem; /* Smaller paragraph text */
        margin: 0 auto 30px;
    }

    .burger-image-box img.burger-main-image {
        max-width: 80%; /* Increase image width on smaller devices */
    }

    .burger-info-box h3 {
        font-size: 1.3rem; /* Smaller heading in info box */
    }

    .burger-info-box p {
        font-size: 0.9rem; /* Smaller paragraph in info box */
    }

    .ingredient-item img {
        max-width: 50px; /* Smaller ingredient icons */
    }

    .ingredient-item p {
        font-size: 0.9rem; /* Smaller ingredient text */
    }

    .burger-about-description h3 {
        font-size: 1.5rem; /* Smaller description heading */
    }

    .burger-about-description p {
        font-size: 1rem; /* Smaller description text */
    }

    .burger-order-now-btn {
        padding: 8px 15px; /* Smaller button padding */
        font-size: 1rem; /* Smaller button text */
    }
}

@media (max-width: 480px) {
    .burger-section-header h2 {
        font-size: 2rem; /* Even smaller heading */
    }

    .burger-section-header p {
        font-size: 0.9rem; /* Even smaller paragraph text */
    }

    .burger-image-box img.burger-main-image {
        max-width: 90%; /* Full width image */
    }

    .burger-info-box {
        max-width: 100%; /* Full width for info box */
    }

    .burger-about-description {
        padding: 15px 10px; /* Smaller padding */
    }

    .burger-order-now-btn {
        padding: 8px 10px; /* Adjusted button padding */
        font-size: 0.9rem; /* Smaller button text */
    }
}


/* Menu Section CSS */
.menu-section {
    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: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;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .menu-card-btn:hover {
    background: var(--text-color);
  }
  


/*====================== Service Section ========================= */
.service-section {
    padding: 80px 0;
    background-color: var(--bg-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(--background-color);
}

/* 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;
    color: var(--background-color);
    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: url(../images/Screenshot\ 2025-08-06\ 154118.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.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; /* 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-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(--text-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 {
    color: var(--main-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(--text-color);
    list-style: none;
}

.footer-bottom a:hover {
    color: var(--menu-card);
}
