/* =============================
   MENU – ABI'S BIRYANI
   Luxury Maroon + Gold Theme
   ============================= */

   :root {
    --bg-main: radial-gradient(circle at top, #5a0010 0, #2a0006 40%, #130004 100%);
    --bg-panel: rgba(0, 0, 0, 0.55);
    --card-bg: rgba(0, 0, 0, 0.6);
  
    --gold: #d4af37;
    --gold-light: #ffdd80;
    --white: #ffffff;
    --black: #000000;
    --muted: #e0d6c0;
  
    --border-gold: rgba(212, 175, 55, 0.5);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 16px 40px rgba(0,0,0,0.75);
    --shadow-card: 0 10px 24px rgba(0,0,0,0.6);
    --radius-lg: 18px;
    --radius-md: 14px;
  }
  
  /* ==== GLOBAL ==== */
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: "Segoe UI", system-ui, sans-serif;
    background: var(--bg-main);
    color: var(--white);
    line-height: 1.6;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* ==== CONTAINER ==== */
  
  .container {
    max-width: 1150px;
    margin: auto;
    padding: 0 16px;
  }
  
  /* ==== HEADER ==== */
  
  /* header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(0,0,0,0.8);
    border-bottom: 1px solid var(--border-gold);
    backdrop-filter: blur(12px);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  
  .logo-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.22em;
  }
  
  .logo-subtitle {
    font-size: 12px;
    color: var(--muted);
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  
  .nav-links a {
    position: relative;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    transition: 0.25s ease;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    border-radius: 8px;
    background: linear-gradient(90deg, #ffdd80, #d4af37);
    transition: 0.25s ease;
    transform: translateX(-50%);
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 70%;
  }
  
  .nav-links a.active {
    background: rgba(0,0,0,0.5);
    box-shadow: inset 0 0 0 1px var(--border-gold);
  }
   */
  /* ==== PAGE HEADER ==== */
  
  .page-header {
    padding: 30px 0 22px;
    background: radial-gradient(circle at top, rgba(212,175,55,0.14) 0, transparent 55%);
    border-bottom: 1px solid var(--border-subtle);
  }
  
  .page-header h1 {
    color: var(--gold);
    margin: 0 0 4px;
    font-size: 26px;
  }
  
  .page-header p {
    font-size: 14px;
    color: var(--muted);
  }
  
  /* ==== MENU SECTIONS ==== */
  
  .menu-section {
    margin-bottom: 28px;
    padding: 18px 18px 16px;
    background: var(--bg-panel);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-card);
  }
  
  .menu-section h2 {
    color: var(--gold-light);
    margin-bottom: 2px;
    font-size: 18px;
  }
  
  .section-subtitle {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 14px;
  }
  
  /* ==== MENU ITEMS ==== */
  
  .menu-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  
  .menu-item {
    background: rgba(0,0,0,0.7);
    border-radius: var(--radius-md);
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    transition: 0.2s ease;
  }
  
  .menu-item:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
  }
  
  .menu-item-name {
    font-size: 13px;
    color: var(--white);
  }
  
  .menu-item-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
  }
  
  /* ==== CTA BUTTON ==== */
  
  .btn {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    background: linear-gradient(135deg, #c89b2d, #ffdd80);
    color: #000;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.8);
  }
  
  /* ==== FOOTER ==== */
  
  footer {
    margin-top: 30px;
    background: rgba(0,0,0,0.85);
    border-top: 1px solid var(--border-gold);
    padding: 14px 0 18px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
  }
  
  /* ==== FLOATING BUTTONS ==== */
  
  .floating-buttons {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 30;
  }
  
  .floating-buttons a {
    background: linear-gradient(135deg, #d4af37, #ffdd80);
    color: #000;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0,0,0,0.7);
    transition: 0.25s ease;
  }
  
  .floating-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
  }
  
  /* ==== MOBILE ==== */
  
  @media (max-width: 768px) {
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .menu-items {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .footer-content {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  