/* ===== 🎨 HANGOVER COLOR PALETTE ===== */

:root {
  --ho-red: #D22B2B;        
  --ho-red-hover: #A31F1F;
  --ho-gold: #FFC300;       
  --ho-dark: #1A1A1A;       
  --ho-light: #F5F5F5;      
}

/* Custom Utility Class for Gold Text */
.text-ho-gold {
  color: var(--ho-gold) !important;
}
#navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 0.5rem 2rem;
  width: 95%;
  max-width: 1400px;
  transition: all 0.4s ease;
}

/* Navbar when scrolling (SNAPPED & ROUNDED RECTANGULAR) */
#navbar.scrolled {
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  padding: 0.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Brand text */
#navbar .navbar-brand {
  font-size: 1.7rem;
  color: var(--ho-red);
  letter-spacing: 2px;
}

/* Links (desktop) */
#navbar .nav-link {
  font-weight: 500;
  color: #333;
  padding: 0.5rem 1.2rem;
  transition: color 0.3s ease;
}

#navbar .nav-link:hover {
  color: var(--ho-red);
}

/* ===== Mobile Menu Overlay ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 2000;
}

.mobile-nav-links a {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav-links li {
  margin: 1rem 0;
}

.mobile-nav-links a:hover {
  color: var(--ho-red);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
}

@media (min-width: 992px) {
  #menuToggle {
    display: none;
  }
}
/* ===== Footer Styles ===== */
#footer {
  background-color: var(--ho-dark);
  color: var(--ho-light);
  padding: 60px 20px 30px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-section h5 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--ho-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--ho-red);
}

.social-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.social-links li a:hover {
  color: var(--ho-red);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #aaa;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-logo-container {
    margin-bottom: 20px;
  }

  .social-links li a {
    justify-content: center;
  }
}

body {
  background-image: url("./Images/loc1.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #333333; 
}

.menu-card-dark-fit {
    /* 🛑 FIX: Define a background color so the container is visible */
    background-color: var(--ho-dark) !important; /* Should be #1A1A1A */
    
    /* 🛑 FIX: Define the subtle border for the edge effect shown in Image 1 */
    border: 1px solid rgba(255, 255, 255, 0.1) !important; 
    
    /* Define rounded corners */
    border-radius: 0.5rem; 
    
    /* Ensure internal padding is present (from the HTML class p-2) */
    /* If p-2 wasn't enough, you can add more padding here: */
    /* padding: 1rem !important; */
    
    /* Ensure it has a margin to separate cards */
    /* margin-bottom: 1.5rem; */ 
    
    /* Remove any shadow */
    box-shadow: none !important; 
}
.menu-card-dark-fit {
  overflow: hidden;
}



.menu-card-dark-fit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}
.menu-card-dark-fit h5, 
.menu-card-dark-fit p, 
.menu-card-dark-fit h4 {
  color: white !important;
}
.menu-card-dark-fit .text-success {
  color: var(--ho-gold) !important; 
  font-weight: 600;
}
/* --------------------------------------------------------------------------------------------------- */
/* ===== MENU CATEGORY BUTTON STYLES (IMPROVED READABILITY) ===== */
/* --------------------------------------------------------------------------------------------------- */

/* Base style for all category buttons */
.container.d-flex.justify-content-center.mb-5.gap-4 .btn {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1.2rem;
    border-radius: 25px; /* Pill shape for a modern look */
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Subtle lift */
}

/* 1. Inactive/Outline Button Style (btn-outline-primary) */
.btn-outline-primary {
    /* Use dark background with subtle border for inactive buttons */
    background-color: var(--ho-dark) !important;
    color: var(--ho-light) !important; /* Readable light gray text */
    border: 2px solid var(--ho-gold) !important; /* Gold border to match theme */
}

.btn-outline-primary:hover {
    /* Hover state: Gold background, dark text */
    background-color: var(--ho-gold) !important;
    color: var(--ho-dark) !important; /* Dark text on bright gold is highly readable */
    border-color: var(--ho-gold) !important;
    box-shadow: 0 6px 15px rgba(255, 195, 0, 0.5); /* Glowing effect on hover */
}

/* 2. Active/Selected Button Style (btn-primary) */
.btn-primary {
    /* Active state: Use primary theme color (RED) */
    background-color: var(--ho-red) !important;
    border-color: var(--ho-red) !important;
    color: var(--ho-light) !important; /* White text on red */
    /* Add a subtle shadow for the active state */
    box-shadow: 0 4px 10px rgba(210, 43, 43, 0.6); 
}

/* Active button hover/focus state */
.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover {
    /* Darker red on hover/focus */
    background-color: var(--ho-red-hover) !important;
    border-color: var(--ho-red-hover) !important;
    color: white !important;
    box-shadow: 0 6px 15px rgba(210, 43, 43, 0.8);
}

/* ===== FIX: Prevent horizontal scroll on mobile/tablet ===== */
html, body {
  max-width: 100%;
  overflow-x: hidden !important;
}

/* ===== Make menu items fully responsive ===== */
.menu-card-dark-fit .row {
  margin: 0;
}

.menu-card-dark-fit img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

/* Fix card width and layout on smaller screens */
@media (max-width: 991px) {
  .menu-card-dark-fit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu-card-dark-fit .col-md-3,
  .menu-card-dark-fit .col-md-6,
  .menu-card-dark-fit .col-md-9 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }

  .menu-card-dark-fit img {
    width: 100%;
    height: auto;
  }

  .price-category-info {
    margin-top: 1rem;
  }

  /* Make category buttons wrap nicely */
  .container.d-flex.justify-content-center.mb-5.gap-4 {
    flex-wrap: wrap;
    gap: 0.8rem !important;
    justify-content: center;
  }

  .container.d-flex.justify-content-center.mb-5.gap-4 .btn {
    flex: 1 1 auto;
  }
}

/* ===== Fix for iPad (Medium Screens) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
  .menu-card-dark-fit .col-md-3 {
    width: 35% !important;
  }
  .menu-card-dark-fit .col-md-6 {
    width: 45% !important;
  }
  .menu-card-dark-fit .col-md-3.price-category-info .d-flex.price{
    display: block !important;
  }
}
@media (max-width: 450px) { 
  .menu-card-dark-fit .col-md-3.price-category-info .d-flex.price{
    display: block !important;
  }
}

