@font-face {
    font-family: "Ekushey Bangla";
    src: url("assets/fonts/Ekushey_Bangla_Bold.woff2") format("woff2");
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: "Rubik Dirt";
    src: url("assets/fonts/RubikDirt-Regular.woff2") format("woff2");
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "Telegraf Black";
    src: url("assets/fonts/Telegraf-Black.woff2") format("woff2");
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "Telegraf Ultralight";
    src: url("assets/fonts/Telegraf-Ultralight.woff2") format("woff2");
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "Telegraf Bold";
    src: url("assets/fonts/Telegraf-Bold.woff2") format("woff2");
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "Telegraf Medium";
    src: url("assets/fonts/Telegraf-Medium.woff2") format("woff2");
    font-weight: normal;
    font-display: swap;
}

body {
    font-family: "Telegraf Medium", sans-serif;
}

.bangla-text {
    font-family: "Ekushey Bangla", sans-serif;
}

.rubik-text {
    font-family: "Rubik Dirt", sans-serif;
}

/* Exact color matching */
.hero-bg {
    background: #f5f5f5;
}

.red-section {
    background: #bc1823;
}

.gray-section {
    background: #f8f9fa;
}

/* BBQ Text Styling - exact match */
.bbq-text {
    font-family: "Rubik Dirt", sans-serif;
    font-size: 7rem;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0.05em;
    line-height: 0.9;
    text-transform: uppercase;
}

/* Bengali text styling */
.babu-text {
    font-family: "Ekushey Bangla", sans-serif;
    font-size: 9rem;
    color: #000000;
    font-weight: bold;
}

.order-btn {
    background: #bc1823;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Section headings */
.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.section-heading-dark {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Menu item cards */
.menu-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #bc1823;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e6c337;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Customer review styling */
.review-card {
    text-align: center;
    padding: 1rem;
}

.customer-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin: 1rem 0 0.5rem 0;
}

.review-text {
    font-family: "Noto Serif Bengali", sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* Footer styling */
.footer-bg {
    background: #1a1a1a;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .bbq-text {
        font-size: 4rem;
    }

    .babu-text {
        font-size: 3.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .bbq-text {
        font-size: 5rem;
    }

    .babu-text {
        font-size: 4.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .bbq-text {
        font-size: 6rem;
    }

    .babu-text {
        font-size: 5.5rem;
    }
}

@media (min-width: 1025px) {
    .bbq-text {
        font-size: 8rem;
    }

    .babu-text {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }

    .section-heading-dark {
        font-size: 2rem;
    }
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c41e3a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a01729;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes panIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-left {
    animation: panIn 0.8s ease-out forwards;
}

/* @keyframes popIn {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .pop-in {
    animation: popIn 0.6s ease-out forwards;
  } */
@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    40% {
        transform: scale(1.1);
        opacity: 1;
    }

    60% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(1.05);
    }

    85% {
        transform: scale(0.97);
    }

    95% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.pop-in {
    animation: bounceIn 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slide {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.animate-slide {
    animation: slide 12s linear infinite;
}