/* =============================
   ORDER ONLINE – 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.7);
  
    --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 18px 45px rgba(0,0,0,0.75);
    --shadow-card: 0 12px 30px rgba(0,0,0,0.65);
    --radius-lg: 18px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--white);
    line-height: 1.6;
  }
  
/* VERY IMPORTANT */
main {
  flex: 1;
}
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  .container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* ==== HEADER / NAVBAR ==== */
  
  /* 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;
    gap: 20px;
  }
  
  .logo {
    display: flex;
    flex-direction: column;
  }
  
  .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 {
    margin: 0 0 4px;
    font-size: 26px;
    color: var(--gold);
  }
  
  .page-header p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
  }
  
  /* ==== SECTION WRAPPER ==== */
  
  .section {
    padding: 32px 0 30px;
  }
  
  /* ==== ORDER OPTIONS LAYOUT ==== */
  
  .order-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  
  /* ==== CARD ==== */
  
  .card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 18px 18px 16px;
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-card);
  }
  
  .card h2 {
    margin: 0;
    font-size: 18px;
    color: var(--gold-light);
  }
  
  .card p {
    font-size: 14px;
    color: var(--muted);
  }
  
  /* ==== BUTTONS ==== */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.25s ease;
    margin-right: 8px;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #c89b2d, #ffdd80);
    color: #000;
    box-shadow: 0 10px 24px rgba(0,0,0,0.7);
  }
  
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
  }
  
  .btn-outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
  }
  
  .btn-outline:hover {
    background: var(--gold);
    color: var(--black);
  }
  
  /* ==== FOOTER ==== */
  
  footer {
    background: rgba(0,0,0,0.85);
    border-top: 1px solid var(--border-gold);
    margin-top: 24px;
    padding: 14px 0 18px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    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 {
    display: block;
    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);
  }
  
  /* ==== RESPONSIVE ==== */
  
  @media (max-width: 900px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .order-options {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .footer-content {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  @media (max-width: 600px) {
    .page-header {
      padding-top: 26px;
    }
  
    .page-header h1 {
      font-size: 22px;
    }
  
    .floating-buttons {
      right: 10px;
      bottom: 10px;
    }
  }
  