
:root {
    --bg-dark: #0c0c0c;              /* deeper black */
    --card-dark: #111111;            /* card background */
    --accent-cream: #f2e6d8;         /* light text */
    --accent-border: #9e0605;        /* steakhouse red */
    --text-main: #f8e9db;            /* warm white */
    --text-subtle: #d8c7b8;          /* softer cream */
    --steak-red: #9e0605;            /* main brand red */
    --steak-red-dark: #6b0404;       /* darker red for shadows */
    --gold-accent: #c39a5b;          /* optional gold accent */
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.avatar-sm {
    height: 2rem;
    width: 2rem;
}

.zalora-grunge {
    color: #FFFFFF;
    font-family: "Zalora Grunge", Sans-serif;
    font-weight: 600;
    font-size: 29px;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.zalora-regular {
    color: #FFFFFF;
    padding: 0;
    margin: 0;
    line-height: 1;
    font-family: "Zalora Regular", Sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    justify-content: center;
    font-size: 15px;
}
.zalora-text {
    color: #FFFFFF;
    font-family: "Zalora", Sans-serif;
    font-weight: 400;
}

.jost-text {
    color: #FFFFFF;
    font-family: "Jost", Sans-serif;
    font-weight: 400;
}

.maven-text {
    font-family: "Maven Pro", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.bg-one {
        background-color: #000000;
    background-image: url('../assets/img/d2.png');
    background-size: auto;
}
.bg-two {
    background-color: #0a1919;
    background-size: auto;
}
.bg-three {
   background-color: #000000;;
    background-size: cover;
}
.bg-four {
        background-color: #000000;
    background-image: url('../assets/img/bg4.jpg');
    background-size: contain;
}
.bg-five {
        background-color: #000000;
    background-image: url('../assets/img/d1.jpg');
    background-size: auto;
}
.big-text {
    font-size: 59px;
}
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: 1;
}
.header-opx {
    position: relative;
    z-index: 2;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}
.relative-pos {
    position: relative;
}
.z-front {
    position: relative;
    z-index: 2;
}
.menu-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.color-two {
        color: #FED75E;
}
.nav-item .steak-color:hover{
    color: #FED75E !important;
}
/* Buttons inline */
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
    background: radial-gradient(circle at top, #1a1a1a, #0c0c0c);
  border: 1px dashed var(--steak-red);
  color: var(--accent-cream);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.65);
}

/* Responsive behaviour: stack on mobile */
@media (max-width: 480px) {
  .menu-buttons {
    flex-direction: column;
    gap: 14px;
  }
  
  .menu-button {
    width: 100%;
    justify-content: center;
  }
}
.menu-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Animated fill layer */
.menu-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--accent-border); /* You can change this */
  z-index: -1;
  transition: width 0.4s ease;
}

/* Hover: fill from left to right */
.menu-button:hover::before {
  width: 100%;
}

/* Text stays visible on hover */
.menu-button:hover {
  color: #fff;
}


.menu-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

/* Liquid red fill */
.menu-button::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 0;
  width: 0%;
  height: 120%;
  background: var(--steak-red);
  z-index: -1;

  /* LIQUID wave effect */
  clip-path: polygon(
    0 0,
    100% 0,
    100% 60%,
    50% 100%,
    0 60%
  );

  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1); /* Smooth liquid */
}

/* Hover effect: fill the whole button slowly */
.menu-button:hover::before {
  width: 130%;
}

/* Text becomes light when red fill is visible */
.menu-button:hover {
  color: #fff;
}
.menu-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

/* LIQUID RED FILL BACKGROUND */
.menu-button::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 0;
  width: 0%;
  height: 150%;
  background: #a11c1c; /* Your logo red */
  z-index: -2;

  /* wave shape */
  clip-path: polygon(
    0 0,
    100% 0,
    100% 60%,
    50% 100%,
    0 60%
  );

  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* BUBBLE LAYER */
.menu-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120%;
  height: 120%;
  z-index: -1;
  
    background: radial-gradient(circle 4px at 20% 80%, rgba(255,255,255,0.2) 40%, transparent 60%),
                radial-gradient(circle 6px at 60% 90%, rgba(255,255,255,0.15) 40%, transparent 60%),
                radial-gradient(circle 5px at 40% 70%, rgba(255,255,255,0.18) 40%, transparent 60%),
                radial-gradient(circle 7px at 80% 85%, rgba(255,255,255,0.12) 40%, transparent 60%);


  opacity: 0;
  transform: translateY(20%);
  transition: opacity 0.8s ease, transform 1.6s ease;

  /* bubbling animation */
  animation: bubbles 4s infinite ease-in-out;
}

/* HOVER STATE */
.menu-button:hover::before {
  width: 130%;
}

.menu-button:hover::after {
  opacity: 0.35;
  transform: translateY(0%);
}

.menu-button:hover {
  color: white;
}

/* BUBBLE FLOAT ANIMATION */
@keyframes bubbles {
  0% {
    background-position: 
      20% 80%, 
      60% 90%, 
      40% 70%, 
      80% 85%;
  }
  50% {
    background-position:
      22% 60%,
      58% 70%,
      42% 55%,
      78% 60%;
  }
  100% {
    background-position: 
      20% 80%, 
      60% 90%, 
      40% 70%, 
      80% 85%;
  }
}
#cursor {
    display: inline-block;
    margin-left: 2px;
    font-weight: bold;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.color-black {
    color: #000000;
}

.navilicus {
        position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
}




@media(max-width: 1024px) {

   

   

}
 
    .menu-wrapper {
        max-width: 900px;
        margin: 50px auto;
        padding: 0 15px;
    }

    .menu-card {
        border-radius: 26px;
        overflow: hidden;
        background: #111;
    box-shadow: 0 0 25px rgba(158, 6, 5, 0.6);
    }

    /* Banner Image */
    .menu-banner {
        position: relative;
        height: auto;
        background: url('../assets/img/cats.jpg') center/cover no-repeat;
    }
    .menu-banner::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(25, 24, 24, 0.604);
    }

    /* Title */
    .menu-title {
        position: relative;
        font-size: 2.8rem;
        letter-spacing: 2px;
        z-index: 2;
        text-shadow: 0 0 8px #000;
    }

    /* Menu Content */
    .menu-content {
        padding: 25px 22px;
    }

    .menu-item {
        margin-bottom: 25px;
        border-bottom: 1px solid #202729;
        padding-bottom: 18px;
    }

    .menu-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .item-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .item-price {
        white-space: nowrap;
    }

    /* NEW badge */
    .badge-new {
        color: #fff;
    background: var(--steak-red);

        padding: 2px 8px;
        border-radius: 12px;
        font-size: 0.7rem;
        margin-left: 8px;
        text-transform: uppercase;
        cursor: pointer; /* <-- makes it look clickable */
    transition: 0.2s ease;
    }

.badge-new:hover {
    background: #9e0605;
    color: #fff;
}

    .item-desc {
        color: #b9c3c7;
        font-size: 0.92rem;
        line-height: 1.4rem;
    }
    .menu-title-wrapper {
        text-align: left;
        padding: 40px;
    position: relative;
    display: block;
    }

    /* Responsive adjustments */
    @media (max-width: 600px) {
        .item-row {
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
        }
    }

    .steak-color {
    color: var(--steak-red) !important;
}

/* -------------------------
   Base backgrounds
-------------------------- */
.pattern-section {
    position: relative;
    padding: 100px 20px;
}

.black-section {
    position: relative;
    background: #000;
    padding: 100px 20px;
}

/* -------------------------
   Fade Gradients
-------------------------- */

/* Fade into black (for bottom of pattern section) */
.fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.8) 70%,
        #000 100%
    );
    pointer-events: none;
}

/* Fade from black into pattern (for top of black section) */
.fade-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.7) 70%,
        #000 100%
    );
    pointer-events: none;
}


.scroll-top-btn:hover {
    background: #c20a08;
    box-shadow: 0 0 18px rgba(158, 6, 5, 0.6);
    transform: translateY(-3px);
}
.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #9e0605; /* steakhouse red */
    color: #fff;
    font-size: 28px;
    display: flex;            /* changed from none to flex for debugging */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;               /* hide with opacity, not display */
    pointer-events: none;     /* prevent clicking when hidden */
    transition: opacity 0.4s ease, transform 0.3s ease;
    z-index: 999999;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

/* FLOATING BUTTONS */
.scroll-top-btn,
.category-btn {
    position: fixed;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #9e0605;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.3s ease;
    z-index: 99999;
    box-shadow: 0 0 12px rgba(0,0,0,0.45);
}

/* scroll-to-top position */
.scroll-top-btn { bottom: 25px; }

/* category button above it */
.category-btn { bottom: 90px; }

.scroll-top-btn.visible,
.category-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

/* HOVER EFFECT */
.scroll-top-btn:hover,
.category-btn:hover {
    background: #c20a08;
    transform: translateY(-3px);
}

/* ---------------------------
   OFF CANVAS MENU
---------------------------- */
.offcanvas {
    position: fixed;
    top: 0;
    right: -350px; /* hidden */
    width: 350px;
    height: 100%;
    background: #0b0b0b;
    color: #fff;
    box-shadow: -4px 0 12px rgba(0,0,0,0.4);
    transition: right 0.35s ease;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.offcanvas.open {
    right: 0;
}

/* HEADER */
.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offcanvas-title {
    font-size: 1.6rem;
    font-weight: bold;
}

.close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

/* LIST */
.offcanvas-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.offcanvas-list li {
    margin-bottom: 18px;
}

.offcanvas-list a {
    text-decoration: none;
    color: #fff;
    font-size: 1.25rem;
    transition: color 0.2s;
}

.offcanvas-list a:hover {
    color: #c20a08;
}

/* ---------------------------
   MOBILE FULL-SCREEN CANVAS
---------------------------- */
@media (max-width: 600px) {
    .offcanvas {
        width: 100%;
        right: -100%;
    }
}
/* BASE offcanvas container */
#offCanvas {
    position: fixed !important;
    top: 0 !important;
    right: -350px !important;
    width: 350px !important;
    height: 100vh !important;
    background: #0b0b0b !important;
    color: #fff !important;
    padding: 20px !important;
    overflow-y: auto !important;
    z-index: 999999 !important;
    transition: right 0.35s ease-in-out !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* WHEN OPEN — FORCE IT INTO VIEW */
#offCanvas.open {
    right: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.steak-modal {
    background: #0b0b0b;
    color: #f2ead5;
    border: 2px solid #9e0605;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 0 25px rgba(158, 6, 5, 0.6);
}

/* Title */
.modal-title-text {
    font-family: "Zalora Grunge", sans-serif;
    color: #9e0605;
    font-size: 26px;
    text-align: center;
}

/* Price */
.modal-price-text {
    font-family: "Maven Pro", sans-serif;
    color: #fed75e;
    font-size: 20px;
    text-align: center;
}

/* Description */
.modal-desc-text {
    font-family: "Jost", sans-serif;
    color: #d9c8a8;
    font-size: 16px;
    line-height: 1.4rem;
}

/* Info */
.modal-extra-text {
    font-family: "Maven Pro", sans-serif;
    color: #ffffffcc;
    font-size: 15px;
}

/* Divider */
.modal-hr {
    border-color: #9e0605;
    opacity: 0.4;
}

/* Close Button */
.close-steak {
    background: #9e0605;
    color: #fff;
    border: none;
    padding: 10px 25px;
    font-size: 15px;
    border-radius: 8px;
}

.close-steak:hover {
    background: #c20a08;
}

/**********************************************
    🔥 STEAKHOUSE BADGE ANIMATIONS
**********************************************/

.badge-new {
    color: #fff;
    background: var(--steak-red);
    padding: 3px 10px;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
    border: 1px solid #6b0404;
    
    /* Adds pulse by default */
    animation: steakPulse 2.2s infinite ease-in-out;
}

/* Glow on hover */
.badge-new:hover {
    background: #c20a08;
    box-shadow: 0 0 12px rgba(158, 6, 5, 0.9), 
                0 0 20px rgba(158, 6, 5, 0.5);
    transform: translateY(-2px);
}

/* Bounce on click */
.badge-new:active {
    animation: steakBounce 0.3s ease;
}

/**********************************************
    🔥 KEYFRAMES
**********************************************/

/* Smooth breathing glow */
@keyframes steakPulse {
    0% { transform: scale(1); box-shadow: 0 0 0px rgba(158, 6, 5, 0.4); }
    50% { transform: scale(1.12); box-shadow: 0 0 12px rgba(158, 6, 5, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 0px rgba(158, 6, 5, 0.4); }
}

/* Quick button bounce */
@keyframes steakBounce {
    0% { transform: scale(1); }
    40% { transform: scale(0.88); }
    70% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.addon-tag {
    display: inline-block;
    padding: 5px 12px;
    margin: 4px;
    font-size: 0.78rem;
    font-family: "Maven Pro", sans-serif;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.35);
    transition: transform 0.15s ease;
}

/* Tiny hover pop */
.addon-tag:hover {
    transform: scale(1.07);
}
/* ---------------------------
   FIRE GLOW ANIMATION 
---------------------------- */
@keyframes fireGlow {
  0% { box-shadow: 0 0 6px #9e0605; }
  50% { box-shadow: 0 0 22px #ff392e; }
  100% { box-shadow: 0 0 6px #9e0605; }
}

.fire-glow {
  animation: fireGlow 2.2s infinite ease-in-out;
}

/* ---------------------------
   SLIDE DOWN ANIMATION 
---------------------------- */
@keyframes steakSlideDown {
  0% { 
    transform: translateY(-60px) scale(0.92);
    opacity: 0;
  }
  60% { 
    transform: translateY(10px) scale(1.03);
    opacity: 1;
  }
  100% { 
    transform: translateY(0) scale(1);
  }
}

.slide-down {
  animation: steakSlideDown 0.65s ease-out;
}

/* Force animation every time modal opens */
.steak-animated-modal .modal-content {
  will-change: transform, opacity;
}

/* Modal fade background override */
.steak-animated-modal.show .modal-dialog {
    transform: none !important;
}
@keyframes fireFlicker {
  0%   { text-shadow: 0 0 6px #ff421a, 0 0 12px #ff8b1f; }
  50%  { text-shadow: 0 0 12px #ff7139, 0 0 22px #ffb347; }
  100% { text-shadow: 0 0 6px #ff421a, 0 0 12px #ff8b1f; }
}

.fire-text {
  animation: fireFlicker 1.8s infinite ease-in-out;
}
.modal-embers {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.ember {
  position: absolute;
  bottom: -20px;
  width: 6px;
  height: 6px;
  background: #ff6633;
  border-radius: 50%;
  opacity: 0.8;
  animation: emberFloat 3.5s linear infinite;
}

@keyframes emberFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  50% {
    opacity: 0.45;
    transform: translateY(-60px) scale(1.2);
  }
  100% {
    transform: translateY(-120px) scale(0.6);
    opacity: 0;
  }
}
.modal-smoke {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('assets/img/smoke.png') center/cover no-repeat;
    opacity: 0.25;
    animation: smokeRise 8s linear infinite;
    pointer-events: none;
    z-index: -2;
}

@keyframes smokeRise {
    0% { transform: translateY(10px) scale(1); opacity: 0.25; }
    50% { transform: translateY(-10px) scale(1.05); opacity: 0.35; }
    100% { transform: translateY(10px) scale(1); opacity: 0.25; }
}

/* EMBERS FOR SECTIONS */
.ember-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Natural floating ember */
.sec-ember {
    position: absolute;
    bottom: -10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;

    background: radial-gradient(circle, #ffd9a3, #ff8c3b, #c73800);

    /* motion blur trail */
    filter: drop-shadow(0 -6px 8px rgba(255,120,30,0.45))
            drop-shadow(0 -12px 14px rgba(255,60,0,0.25));

    animation: emberFloat var(--emberSpeed, 4s) ease-out forwards;
    opacity: 0.85;
}


/* Smooth random floating motion */
@keyframes emberFloat {
    0% {
        transform: translate(0, 0) scale(0.6) rotate(0deg);
        opacity: 1;
    }
    20% {
        transform: translate(-10px, -60px) scale(1) rotate(15deg);
    }
    45% {
        transform: translate(20px, -140px) scale(1.1) rotate(-10deg);
        opacity: 0.8;
    }
    70% {
        transform: translate(-12px, -230px) scale(0.9) rotate(20deg);
        opacity: 0.55;
    }
    100% {
        transform: translate(8px, -330px) scale(0.6) rotate(-15deg);
        opacity: 0;
    }
}
@keyframes emberFloat {
    0% {
        transform: translate(0, 0) scale(0.6);
        opacity: 1;
    }
    30% {
        transform: translate(var(--driftX1), -90px) scale(1);
    }
    60% {
        transform: translate(var(--driftX2), -200px) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: translate(var(--driftX3), -330px) scale(0.7);
        opacity: 0;
    }
}



/* Smoke container */
.smoke-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1; /* move above ember layer slightly */
}

/* Visible, realistic smoke wisps */
.smoke-wisp {
    position: absolute;
    bottom: -40px;
    width: 120px;
    height: 200px;

    opacity: 0.18; /* stronger */
    
    /* more smoky color: warm grey */
    background: radial-gradient(circle,
        rgba(200,200,200,0.4) 0%,
        rgba(180,180,180,0.15) 35%,
        rgba(100,100,100,0) 80%
    );

    filter: blur(10px); /* sharper smoke */
    animation: smoke-rise 7s ease-out forwards;
}

/* Smooth rising animation */
@keyframes smoke-rise {
    0% {
        transform: translateY(0) scale(0.7);
        opacity: 0.2;
    }
    40% {
        opacity: 0.35;
    }
    100% {
        transform: translateY(-350px) translateX(-40px) scale(1.4);
        opacity: 0;
    }
}
