body,
html {
  scrollbar-gutter: stable;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  background-color: #000;
  color: white;
}

@font-face {
    font-family: 'Analogue';
    src: url('fonts/Analogue-Font/Analogue.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
     
}
  body, html, p, h1, h2, h3, h4, h5, h6, a, li, ul, span, div, nav, 
      button, input, textarea, .navbar, .nav-link, .sidebar-nav, 
      .menu-toggle, .sub-menu, .offcanvas, .btn, .footer, .header,
      .navbar-brand, .nav-item, .sidebar-footer-link, .nav-link-custom {
        font-family: 'Analogue' !important;
        text-transform: capitalize !important;
      }
      
      i, .fas, .far, .fab, .fa, .dropdown-icon, .fa-chevron-down, .fa-chevron-up {
        font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Pro', 'Font Awesome 5 Free', 'Font Awesome 5 Pro', 'Font Awesome', FontAwesome, sans-serif !important;
        font-weight: 900 !important;
      } */

    
.space{
  width: 100% ;
  height: 100px;
}
.logo-img {
  height: 50px;
}
.bars {
  height: 40px;
  cursor: pointer;
}
.sidebar-logo {
  margin-right: 30px;
  margin-top: 20px;
  height: 37px;
  filter: brightness(0);
  opacity: 0.5;
}

/* Background Image with Dark Overlay */
.bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  /* Placeholder food image - replace URL with your specific image */
  background: url("https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=2069&auto=format&fit=crop")
    no-repeat center center/cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85); /* Heavy dark overlay */
  z-index: -1;
}

/* Navbar Styling */
.navbar {
  padding-top: 2rem;
}

.navbar-brand {
  font-weight: 700;
  color: white !important;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  color: #ff6600;
  font-size: 1.5rem;
}

.nav-link-custom {
  color: white !important;
  border: 1px solid #ff6600;
  border-radius: 7px;
  padding: 6px 40px !important;
  margin: 0 5px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-weight: 300;
  background: rgba(0, 0, 0, 0.8);
}

/* .nav-link-custom:hover {
  background: #ff6600;
  color: black !important;
  box-shadow: 0 0 10px #ff6600;
} */

.hamburger-icon {
  color: #ff6600;
  font-size: 2rem;
  cursor: pointer;
}

/* Sidebar Container */
.custom-sidebar {
  background: linear-gradient(180deg, #ff6600 0%, #cc3300 100%); /* Orange Gradient */
  color: white;
  width: 300px !important; /* Adjust width as needed */
  border: none;
}

/* Navigation List */
.sidebar-nav li {
  margin-bottom: 2rem;
  position: relative;
  padding-left: 20px; /* Space for the bullet point */
}
.menu-button-mob {
  margin-right: 33px  !important;
}
/* 
.sidebar-nav li::before {
  content: "•";
  color: white;
  font-size: 1.5rem;
  position: absolute;
  left: -10px;
  top: -5px;
} */

/* Links */
.sidebar-nav a {
  font-family: 'ITC Bauhaus', sans-serif; /* Your custom font */
  font-size: 2rem;
  color: white;
  text-decoration: none;
  font-weight: 300; /* Light weight looks closer to image */
  transition: opacity 0.3s;
}

.sidebar-nav a:hover {
  opacity: 0.8;
}

/* Footer Link */
.sidebar-footer-link {
  font-family: 'Poppins', sans-serif; /* Standard font for URL */
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Hero Section with Video Background */
.hero-section {
  margin-top: -8%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Video Background */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Optional dark overlay for better text visibility */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

/* The Central Orange Glow/Circle */
.glow-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Faint Hookah Silhouette */
.hookah-silhouette {
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  z-index: 1;
}

/* Typography */
.hero-content {
  position: relative;
  z-index: 2;
}

.top-tagline {
  letter-spacing: 10px;
  font-weight: 100 !important;
  margin-top: 30%;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #ddd;
}

.main-title {
  font-size: 7rem;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
  margin-top: -10px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.sub-tagline {
  font-weight: 300;
  font-size: 1.4rem;
  margin-bottom: 5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-crave {
  position: relative;
  /* The specific gradient from the image (Light Orange to Darker Red-Orange) */
  background: linear-gradient(to bottom, #ff6600, #cc3300);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 12px 35px;
  border: none;
  border-radius: 50px; /* Makes it pill-shaped */
  cursor: pointer;
  z-index: 1;
  transition: transform 0.2s ease;
}

/* The Outer Ring */
.btn-crave::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  /* Size of the ring relative to the button */
  width: calc(100% + 20px); 
  height: calc(100% + 20px);
  
  /* The thin orange border */
  border: 1px solid #ff6600;
  border-radius: 50px;
  
  /* Ensures the ring is behind or around the button */
  z-index: -1;
  pointer-events: none;
}

/* Optional: Hover Effect */
.btn-crave:hover {
  transform: scale(1.05);
  background: linear-gradient(to bottom, #ff7722, #dd4411);
}

/* CTA Button */
.btn-glow {
  background: linear-gradient(135deg, #ff8c00, #e63900);
  color: white;
  padding: 12px 40px;
  border-radius: 50px;
  border: none;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
  transition: transform 0.2s;
}

.btn-glow:hover {
  transform: scale(1.05);
  color: white;
}

/* Footer Elements */
.footer-social {
  position: absolute;
  bottom: 30px;
  left: 50px;
  z-index: 2;
}

.social-pill {
  border: 1px solid #ff6600;
  border-radius: 50px;
  padding: 8px 20px;
  display: inline-flex;
  gap: 15px;
}
.social-pill img {
  width: 20px;
  margin-top: -5px;
}
.social-pill a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.social-pill a:hover {
  color: #ff6600;
}
.social-pill-mob{
      justify-content: center;
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-flex;
    gap: 15px;
    width: 100%;
    text-align: center;
    align-items: center;
    margin: auto;
}

.footer-link {
  position: absolute;
  bottom: 40px;
  right: 50px;
  font-size: 0.9rem;
  z-index: 2;
}

.footer-link a {
  color: white;
  text-decoration: none;
}

/* Home-about section */
.about-sectinon{
  padding-top: 10%;
  padding-bottom: 10%;
}

.about-content h1{
  color: white;
  line-height: 1.1;
  padding-top: 50px;
}
.about-content p{
  color: rgb(165, 165, 165);
  line-height: 1.1;
  text-align: justify;
}
.about-img{
  align-items: end;
  text-align: end;
}
.about-2 {
  position: relative; 
  text-align: center; 
}

.about-2 h1 {
  font-size: 4rem;
  position: absolute;
  margin-top: -70px;
  left: 0;
  width: 100%;        
  text-align: center; 
  z-index: 10;
  color: white;
}
.about-2 p {
  background: #0000008c;
  padding: 21px;
  border-radius: 30px;
  width: 75%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: white;
}

.about-2 img {
  display: block;     
  width: 100%;
}
.menu-title {
  font-family: 'ITC Bauhaus Medium', sans-serif;
  font-size: 4rem;
  top: 35%;
  text-shadow: 1px -2px 16px black;
  z-index: 10;
  width: 100%;
}
/* Ensure images don't stretch weirdly */
.object-fit-cover {
  object-fit: cover;
}

.desktop-logo{
  height: 60px;
  margin-top: -14px;
  margin-right: -18px;
}
.btn-crave-banner{
  width: 190px !important;
  font-size: 16px !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-nav {
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
  }
  .nav-link-custom {
    margin: 5px 0;
    text-align: center;
  }
  .bars {
    height: 30px !important;
    margin-right: -50px !important;
    cursor: pointer;
  }
  .hero-section {
    margin-top: -25% !important;
  }
  .main-title {
    font-size: 3rem;
  }
  .glow-circle {
    width: 300px;
    height: 300px;
  }
  .footer-social,
  .footer-link {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 20px;
    text-align: center;
    display: block;
    z-index: 2;
  }

  .about-2 img {
    display: block;
    width: 100%;
    height: auto;
  }
  .about-2 h1 {
    font-size: 1.7rem;
  }
  .about-2 p {
    font-size: 10px;
    background: none !important;
  }
  .about-img img{
    width: 50% !important;
    margin-bottom: -30%;
  }
  .glow-circle img{
    width: 250px
  }

  .menu-title{
    top: -4%;
    font-size: 43px;
    padding: 8px;
  }
  .btn-crave {
    font-size: 12px !important;
    padding: 8px 25px !important;
  }
  .btn-crave-banner{
    width: 140px !important;
    font-size: 12px !important;
  }

  .mob-sidebar{
    margin-top:35px;
  }
}

/* Menu Page */
/* --- Masonry Grid Layout --- */
.masonry-grid {
  column-count: 4; /* 3 Columns on desktop */
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid; /* Prevents image from being cut in half */
  margin-bottom: 1.5rem;
}

.gallery-img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
}

.gallery-img:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

/* --- Lightbox Navigation Buttons --- */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1.5rem;
}

.nav-btn:hover {
  background: #ff6600; /* Uses your orange variable */
}

.prev-btn { left: -60px; }
.next-btn { right: -60px; }

/* Responsive adjustments */
@media (max-width: 991px) {
  .masonry-grid { column-count: 2; } /* 2 cols on tablets */
  .prev-btn { left: 10px; } /* Move buttons inside on mobile */
  .next-btn { right: 10px; }
}

@media (max-width: 576px) {
  .masonry-grid { column-count: 1; } /* 1 col on mobile */
}