/* =================================================================
   1. GLOBAL VARIABLES & RESET
================================================================= */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Amatic SC", sans-serif;
  --nav-font: "Inter", sans-serif;
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #37373f;
  --accent-color: brown;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #7f7f90;
  --nav-hover-color: #ce1212;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #7f7f90;
  --nav-dropdown-hover-color: #ce1212;
  scroll-behavior: smooth;
}

.light-background { --background-color: #f2f2f2; --surface-color: #ffffff; }
.dark-background { --background-color: #1f1f24; --default-color: #ffffff; --heading-color: #ffffff; --surface-color: #37373f; --contrast-color: #ffffff; }

body { color: var(--default-color); background-color: var(--background-color); font-family: var(--default-font); }
a { color: var(--accent-color); text-decoration: none; transition: 0.3s; }
a:hover { color: color-mix(in srgb, var(--accent-color), transparent 25%); text-decoration: none; }
h1, h2, h3, h4, h5, h6 { color: var(--heading-color); font-family: var(--heading-font); }

/* =================================================================
   2. HEADER & NAVIGATION
================================================================= */
.header { color: var(--default-color); background-color: var(--background-color); padding: 20px 0; transition: all 0.5s; z-index: 997; }
.scrolled .header { box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1); }
.header .logo { line-height: 1; }
.header .logo img { max-height: 36px; margin-right: 8px; }
.header .logo h1 { font-size: 30px; margin: 0; font-weight: 700; color: var(--heading-color); font-family: var(--default-font); }
.header .logo span { color: var(--accent-color); font-size: 36px; }

.header .btn-getstarted, .header .btn-getstarted:focus { color: var(--contrast-color); background: var(--accent-color); font-size: 14px; padding: 8px 26px; margin: 0; border-radius: 50px; transition: 0.3s; }
.header .btn-getstarted:hover { color: var(--contrast-color); background: color-mix(in srgb, var(--accent-color), transparent 15%); }

/* Desktop Nav */
@media (min-width: 1200px) {
  .navmenu { padding: 0; }
  .navmenu ul { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; }
  .navmenu li { position: relative; }
  .navmenu>ul>li { white-space: nowrap; padding: 15px 14px; }
  .navmenu a { color: var(--nav-color); font-size: 15px; font-family: var(--nav-font); font-weight: 500; display: flex; align-items: center; justify-content: space-between; white-space: nowrap; transition: 0.3s; position: relative; }
  .navmenu>ul>li>a:before { content: ""; position: absolute; height: 2px; bottom: -6px; left: 0; background-color: var(--nav-hover-color); visibility: hidden; width: 0px; transition: all 0.3s ease-in-out 0s; }
  .navmenu a:hover:before, .navmenu li:hover>a:before, .navmenu .active:before { visibility: visible; width: 100%; }
  .navmenu li:hover>a, .navmenu .active { color: color-mix(in srgb, var(--nav-color) 80%, black 50%); }
}


/* =================================================================
   MOBILE NAVIGATION (Max-width: 1199px)
================================================================= */
@media (max-width: 1199px) {
  .header .container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    flex-wrap: nowrap; 
  }

  /* Base Toggle Button (Hamburger) */
  .mobile-nav-toggle { 
    color: var(--nav-color); 
    font-size: 28px; 
    line-height: 0; 
    margin-right: 0; 
    cursor: pointer; 
    transition: color 0.3s; 
    order: 4; 
    z-index: 9999; 
  }

  .navmenu { padding: 0; z-index: 9997; order: 4; }

  /* The Slide-in Drawer (UL) */
  .navmenu ul { 
    display: block; 
    visibility: hidden; 
    position: fixed; 
    top: 0;
    right: 0;
    width: 300px; 
    height: 100vh;
    padding: 70px 0 20px 0; /* Padding top to clear the X button */
    margin: 0; 
    background-color: var(--nav-mobile-background-color); 
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); 
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    overflow-y: auto; 
    transition: transform 0.3s ease-in-out, visibility 0.3s; 
    transform: translateX(100%); /* Hidden off-screen to the right */
    z-index: 9998; 
  }

  /* Nav Links Styling */
  .navmenu a { 
    color: var(--nav-dropdown-color); 
    padding: 10px 20px; 
    font-family: var(--nav-font); 
    font-size: 17px; 
    font-weight: 500; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    white-space: nowrap; 
    transition: 0.3s; 
  }

  .navmenu a:hover, .navmenu .active { 
    color: var(--nav-dropdown-hover-color); 
  }

  /* --- ACTIVE STATE (When Menu is Open) --- */

  /* 1. Dark background overlay */
  .mobile-nav-active .navmenu { 
    position: fixed; 
    inset: 0; 
    background: rgba(33, 37, 41, 0.8); 
    transition: 0.3s; 
    z-index: 9996; 
  }

  /* 2. Slide the menu in */
  .mobile-nav-active .navmenu>ul { 
    visibility: visible; 
    transform: translateX(0); 
  }

  /* 3. Move Toggle to top-left of the slider and change color */
  .mobile-nav-active .mobile-nav-toggle { 
    position: fixed; 
    top: 18px;
    right: 255px; /* Positioned inside the 300px slider, near its left edge */
    color: var(--nav-dropdown-color); /* Dark color to see against white background */
    font-size: 32px;
    z-index: 9999;
  }

  /* 4. Swap Hamburger icon to 'X' icon (Bootstrap Icons code) */
  .mobile-nav-active .mobile-nav-toggle::before {
    content: "\f659"; /* The 'bi-x' icon code */
  }

  /* Logo & Other Header Elements Adjustments */
  .header .logo { margin-right: auto; flex-shrink: 0; }
  .header .logo img { max-height: 32px; }
  .header .phone-wrap, .header a[href^="tel:4086394014"] { 
    order: 2; 
    white-space: nowrap; 
    display: flex; 
    align-items: center; 
    font-size: 12px; 
    margin-right: 12px; 
    text-decoration: none; 
    color: inherit; 
  }
  .header .btn-getstarted { 
    order: 3; 
    margin: 0 12px 0 0; 
    padding: 6px 14px; 
    white-space: nowrap; 
    font-size: 11px; 
    display: inline-block; 
    flex-shrink: 0; 
  }
}
/* =================================================================
   3. SECTIONS (General)
================================================================= */
section, .section { color: var(--default-color); background-color: var(--background-color); padding: 60px 0; scroll-margin-top: 92px; overflow: clip; }
.section-title { text-align: center; padding-bottom: 60px; position: relative; }
.section-title h2 { font-size: 13px; letter-spacing: 1px; font-weight: 400; padding: 0; margin: 0; color: color-mix(in srgb, var(--default-color), transparent 50%); display: inline-block; text-transform: uppercase; font-family: var(--default-font); }
.section-title p { color: var(--heading-color); margin: 10px 0 0 0; font-size: 48px; font-weight: 500; font-family: var(--heading-font); }
.section-title p .description-title { color: var(--accent-color); }

/* =================================================================
   4. HERO SECTION
================================================================= */
.hero { width: 100%; min-height: 60vh; position: relative; padding: 60px 0; display: flex; align-items: center; }
.hero h1 { margin: 0; font-size: 64px; font-weight: 700; }
.hero p { color: color-mix(in srgb, var(--default-color), transparent 30%); margin: 5px 0 30px 0; font-size: 20px; font-weight: 400; }
.hero .btn-get-started { color: var(--contrast-color); background: var(--accent-color); font-weight: 400; font-size: 15px; letter-spacing: 1px; display: inline-block; padding: 10px 28px 12px 28px; border-radius: 50px; transition: 0.5s; box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1); }

/* GICB brand title in hero section */
.hero .gicb-title {
  font-size: 55px;          /* same big size as before */
  font-weight: 700;
  color: #ffffff;          /* white color like original */
  letter-spacing: 3px;
  margin: 10px 0;
}
/* Hero tagline text - force white color */
.hero .tagline,
.hero p {
  color: #ffffff !important;
}
/* Move hero content slightly upward */
.hero .hero-content {
  margin-top: 0px;   /* adjust value if needed */
}
/* Reduce spacing between hero headings */
.hero h1 {
  margin-bottom: 5px;   /* space below SEO heading */
}

.hero .gicb-title {
  margin-top: 3px;
  margin-bottom: 3px;    /* tighter gap */
}

.hero p {
  margin-top: 5px;
  margin-bottom: 10px;   /* space before button */
}


/* =================================================================
   5. ABOUT SECTION
================================================================= */
#about.section { padding-top: 0px; }
#about .section-title { padding-bottom: 20px; margin-bottom: 0; }
.about .about-img-wrap { text-align: center; }
.about .about-img-wrap img { border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); object-fit: cover; height: 200px; width: 360px; max-width: 100%; display: inline-block; }
.about .about-heading { font-family: var(--default-font); font-size: 38px; font-weight: 700; margin-bottom: 20px; color: var(--heading-color); }
.about .about-desc { font-size: 18px; line-height: 1.8; color: color-mix(in srgb, var(--default-color), transparent 20%); }
.about .about-quote { font-family: var(--heading-font); font-size: 48px; font-weight: 700; color: var(--default-color); line-height: 1.2; margin: 0; padding: 20px; position: relative; display: inline-block; }
.about .quote-icon-img { width: 50px; height: auto; margin-left: 10px; vertical-align: middle; display: inline-block; }
.about .quote-author { font-family: var(--default-font); font-size: 20px; font-weight: 600; color: var(--accent-color); margin-top: 5px; letter-spacing: 0.5px; }

/* =================================================================
   6. MENU (BUFFET) SECTION - SCROLLBAR REMOVED
================================================================= */
#menu { margin-top: -100px; }

.buffet-day-tabs {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    justify-content: center; /* Desktop Center */
    border-bottom: 2px solid #eeeeee;
    padding: 10px 0;
    gap: 0; /* Reduced gap to help fit all days */
    
    /* HIDE SCROLLBARS (Firefox & Edge) */
    scrollbar-width: none !important; 
    -ms-overflow-style: none !important; 
}

/* HIDE SCROLLBARS (Chrome, Safari, Android) */
.buffet-day-tabs::-webkit-scrollbar { 
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* Mobile Fix for Day Tabs */
@media (max-width: 991px) {



    .buffet-day-tabs {
        justify-content: flex-start !important; 
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .buffet-day-tabs .nav-item { 
        flex: 0 0 auto; 
    }
    
    /* Make text slightly smaller on mobile to help fit all 7 days */
    .menu .nav-link {
        margin: 0 5px !important;
        padding: 8px 10px !important;
        font-size: 14px !important;
    }
}

.menu .nav-link { 
    background-color: transparent; 
    color: #000000;
    margin: 0 10px; 
    padding: 10px 15px; 
    transition: 0.3s; 
    border-radius: 0; 
    cursor: pointer; 
    border: 0; 
    border-bottom: 3px solid transparent;
    font-weight: 600;
    white-space: nowrap;
}

.menu .nav-link:hover, 
.menu .nav-link.active { 
    color: #8B4513; 
    border-color: #8B4513; 
    background-color: transparent;
}

/* --- Card & Item Styles --- */
.buffet-card { 
    background: #fff; 
    border-radius: 18px; 
    padding: 20px; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.06); 
    height: 100%; 
    border: 1px solid #f0f0f0; 
    display: flex;
    flex-direction: column;
}

.category-title { 
    font-family: var(--heading-font); 
    font-size: 22px; 
    color: #8B4513; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 15px; 
    flex-shrink: 0;
}

.menu-scroll-container {
    max-height: 500px; 
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px; 
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
 
    .menu-scroll-container { max-height: 320px; }
    .buffet-item img { width: 70px !important; height: 70px !important; }
    .buffet-item h6 { font-size: 15px; }
    .section-title p { font-size: 32px; }
    #menu { margin-top: 20px; }
}


@media (max-width: 991px) {
  #menu { margin-top: -80px; }
}

.buffet-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.buffet-item:last-child { border-bottom: 0; }
.buffet-item img { width: 84px; height: 84px; border-radius: 14px; object-fit: cover; flex: 0 0 auto; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); }
.buffet-item h6 { font-weight: 700; font-size: 16px; margin: 0 0 4px 0; line-height: 1.2; color: #212529; }

.tag { font-size: 10px; text-transform: uppercase; font-weight: 800; padding: 2px 8px; border-radius: 50px; border: 1px solid #ddd; }
.tag.veg { color: #28a745; border-color: #28a745; }
.tag.non-veg { color: #ce1212; border-color: #ce1212; }







/* =========================================
   MENU SIDE BANNERS (Smaller Size)
========================================= */
#menu {
  position: relative;
  overflow-x: clip;
}

.haleem-side-poster {
  position: absolute;
  top: 10px; 
  width: 300px;  /* <--- DECREASED SIZE (Was 140px) */
  z-index: 9;
  display: none; 
  transition: transform 0.3s ease;
}

.haleem-side-poster img {
  width: 100%;
  height: auto;

}

.haleem-side-poster:hover {
  transform: scale(1.1);
  cursor: pointer;
}



/* Position Right */
.poster-right {
  right: 10px;
  animation: float-vertical 4s ease-in-out infinite reverse;
}

@keyframes float-vertical {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* SHOW ON LAPTOPS & DESKTOPS
   (Since the images are smaller, we can show them on screens 1200px+) */
@media (min-width: 1200px) {
  .haleem-side-poster {
    display: block;
  }
}



/* =================================================================
   7. FOOTER SECTION
================================================================= */
.footer { --heading-font: var(--default-font); color: var(--default-color); background-color: var(--background-color); font-size: 14px; padding: 20px 0; position: relative; }
.footer .icon { color: var(--accent-color); margin-right: 15px; font-size: 24px; line-height: 0; }
.footer h4 { font-size: 16px; font-weight: 700; margin-bottom: 15px; }
.footer .address p { margin-bottom: 0px; }
.footer .social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer .social-links a { display: flex; align-items: center; justify-content: center; width: 35px; height: 35px; border-radius: 50%; font-size: 14px; transition: 0.3s; border: 1px solid rgba(0, 0, 0, 0.1); color: var(--default-color); }
.footer .social-links a:hover { background-color: var(--accent-color); color: #fff; transform: scale(1.1); }

/* =================================================================
   8. MISC
================================================================= */
.scroll-top { position: fixed; visibility: hidden; opacity: 0; right: 15px; bottom: -15px; z-index: 99999; background-color: var(--accent-color); width: 44px; height: 44px; border-radius: 50px; transition: all 0.4s; }
.scroll-top i { font-size: 24px; color: var(--contrast-color); line-height: 0; }
.scroll-top.active { visibility: visible; opacity: 1; bottom: 15px; }

.phone-badge { color: var(--default-color); font-weight: 600; text-decoration: none; font-size: 15px; transition: 0.3s; }
.phone-badge i { color: var(--accent-color); margin-right: 5px; }

/* =========================================
   INTEGRATED CHATBOT STYLES
   ========================================= */

#chatbot-container {
  position: fixed;
  bottom: 70px;
  right: 18px;
  z-index: 999999;
  /* Use your website's default font */
  font-family: var(--default-font);
}

/* Floating Toggle Button */
#chatbot-toggle {
  width: 45px;
  height: 45px;
  background: var(--accent-color); /* Uses your 'brown' */
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#chatbot-toggle:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* The Chat Box */
#chatbot-box {
  width: 280px;
  height: 320px;
  background: var(--surface-color);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 60px;
  right: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

#chatbot-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Header Section */
.chatbot-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: var(--default-font);
}

.bot-name {
  margin: 0;
  /* Using your website's heading font for style */
  font-family: var(--heading-font);
  font-size: 22px; 
  letter-spacing: 1px;
}

.bot-status {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
  display: block;
}

#chatbot-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

/* Message Area */
.chatbot-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  background: #fdfdfd; /* Clean background */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Bubbles */
.bot-msg, .user-msg {
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1.5;
  max-width: 80%;
}

.bot-msg {
  background: #f1f1f1;
  color: var(--default-color);
  border-radius: 15px 15px 15px 2px;
  align-self: flex-start;
}

.user-msg {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 15px 15px 2px 15px;
  align-self: flex-end;
}

/* Input Section */
.chatbot-input {
  display: flex;
  padding: 12px;
  background: var(--surface-color);
  border-top: 1px solid #eee;
  align-items: center;
}

.chatbot-input input {
  flex: 1;
  border: none;
  outline: none;
  padding: 5px 10px;
  font-family: var(--default-font);
  font-size: 14px;
}

.chatbot-input button {
  background: var(--accent-color);
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

/* Mobile Responsiveness */
@media (max-width: 500px) {
  #chatbot-box {
    width: calc(80vw - 30px);
    height: 50vh;
    bottom: 80px;
    right: -10px; /* Aligns better on small screens */
  }
  
  #chatbot-container {
    bottom: 75px;
    right: 10px;
  }
 
}