/* :root{
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #37252c;
    --bs-secondary: #f4b31b;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #F4F6F8;
    --bs-dark: #45595B;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))}*,*::before,*::after{box-sizing:border-box}@media(prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}} */


.text-primary {
    color: var(--bs-primary) !important
}

.bg-primary{
    background-color: var(--bs-primary) !important;

}

.bg-dark-blue{
    background-color: var(--bs-dark) !important;

}

a {
    color: var(--bs-primary);

    text-decoration: none
}

a:hover {
    color: #203344;

}

.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active, .fixed-top.bg-white .navbar .navbar-nav .nav-link:hover, .fixed-top.bg-white .navbar .navbar-nav .nav-link.active{
    color: var(--bs-primary);
}

.btn-primary{
    background-color: var(--bs-primary) !important;
}


.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: #ffffff;
}

.meal_card_photo{
    width:260px;
    height:260px;
}

.header_logo{
    width: 245px;
    height: 110px;
}

.hero-header {
    background-size: contain;
}

.animate_section,.main-banner {
    animation: fadeUp 3s;
  }

.animate_popup_section,.main-banner {
    animation: menufadeUp 3s;
  }

  .animate_popup_section div:first-child{
    animation: menufadeUp .9s;
  }

  
  @keyframes fadeUp {
     0%{transform:translate(0px, 50px); opacity: 0;}
100%{transform:translate(0px, 0); opacity: 1;}

  }

  @keyframes menufadeUp {
     0%{transform:translate(0px, 100px); opacity: 0;}
100%{transform:translate(0px, 0); opacity: 1;}
    /* from {
      opacity: 0;
    }
    to {
      opacity: 1;
    } */
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }

  .dark-mode .select2-container--default .select2-search--dropdown .select2-search__field{
    background-color: #f4f6f8 !important;
  }


/* ============================================================
   EL CAPO MENU THEME — Mexican Restaurant Styling
   Colors: warm yellows (#f4b31b), deep reds (#b5281e), 
   forest greens (#2d6a4f), warm brown primary (#37252c)
   ============================================================ */

/* ---------- Hero Section ---------- */
.elcapo-menu-hero {
    /* background: linear-gradient(135deg, #37252c 0%, #4a2c2a 40%, #5c2e28 70%, #37252c 100%); */
    background-color: var(--bs-dark);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.elcapo-menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(244, 179, 27, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(181, 40, 30, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.elcapo-menu-hero-content {
    position: relative;
    z-index: 1;
}

.elcapo-menu-subtitle {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #f4b31b;
    margin-bottom: 12px;
}

.elcapo-menu-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 52px;
    color: #ffffff;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.elcapo-menu-tagline {
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    letter-spacing: 1px;
}

/* Ornament / Divider */
.elcapo-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.elcapo-ornament i {
    color: #b5281e;
    font-size: 22px;
    animation: elcapoPulse 2.5s ease-in-out infinite;
}

.elcapo-ornament-line {
    display: inline-block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f4b31b, transparent);
}

@keyframes elcapoPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}


/* ---------- Menu Section ---------- */
.elcapo-menu-section {
    background-color: #fdf8f0;
    min-height: 400px;
}


/* ---------- Category Block ---------- */
.elcapo-category-block {
    margin-bottom: 56px;
}

.elcapo-category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
}

.elcapo-category-header-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f4b31b 50%, transparent);
    max-width: 200px;
}

.elcapo-category-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: #37252c;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    margin: 0;
}

.elcapo-category-name i {
    color: #b5281e;
    margin-right: 10px;
    font-size: 24px;
}


/* ---------- Meal Items ---------- */
.elcapo-meals-list {
    max-width: 800px;
    margin: 0 auto;
}

.elcapo-meal-item {
    padding: 18px 0;
    border-bottom: 1px dashed rgba(55, 37, 44, 0.12);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.elcapo-meal-item:last-child {
    border-bottom: none;
}

.elcapo-meal-item:hover {
    background-color: rgba(244, 179, 27, 0.06);
    transform: translateX(4px);
}

.elcapo-meal-top {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.elcapo-meal-name {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #37252c;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.elcapo-meal-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(55, 37, 44, 0.2);
    min-width: 30px;
    margin-bottom: 5px;
}

.elcapo-meal-price {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: #b5281e;
    white-space: nowrap;
    flex-shrink: 0;
}

.elcapo-meal-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #6b5b5b;
    margin: 6px 0 0 0;
    line-height: 1.5;
    font-style: italic;
}


/* ---------- Back Link ---------- */
.elcapo-back-link {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #37252c;
    text-decoration: none;
    padding: 12px 32px;
    border: 2px solid #f4b31b;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.elcapo-back-link:hover {
    background: #f4b31b;
    color: #37252c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 179, 27, 0.3);
}


/* ---------- Category Pills ---------- */
.elcapo-category-pill {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #37252c;
    text-decoration: none;
    padding: 10px 24px;
    border: 2px solid #2d6a4f;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.elcapo-category-pill:hover {
    background: #2d6a4f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25);
}


/* ---------- Other Categories Section ---------- */
.elcapo-other-categories {
    padding-top: 40px;
    border-top: 2px solid rgba(244, 179, 27, 0.2);
}


/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .elcapo-menu-hero {
        padding: 60px 0 40px;
    }

    .elcapo-menu-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .elcapo-menu-subtitle {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .elcapo-ornament-line {
        width: 50px;
    }

    .elcapo-category-name {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .elcapo-category-header {
        gap: 12px;
    }

    .elcapo-category-header-line {
        max-width: 60px;
    }

    .elcapo-meal-name {
        font-size: 16px;
    }

    .elcapo-meal-price {
        font-size: 16px;
    }

    .elcapo-meal-desc {
        font-size: 13px;
    }

    .elcapo-meal-top {
        flex-wrap: wrap;
    }

    .elcapo-meal-dots {
        display: none;
    }

    .elcapo-meal-top .elcapo-meal-price {
        width: 100%;
        text-align: left;
        margin-top: 2px;
    }
}

@media (max-width: 480px) {
    .elcapo-menu-title {
        font-size: 26px;
    }

    .elcapo-category-name {
        font-size: 18px;
        white-space: normal;
        text-align: center;
    }

    .elcapo-category-header {
        flex-direction: column;
        gap: 8px;
    }

    .elcapo-category-header-line {
        max-width: 100px;
    }
}