:root {
    --primary-red: #d1121b;
    --dark-red: #a30e15;
    --dark-green: #0a2e12;
    --text-color: #0a2e12;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Bebas Neue', 'Oswald', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--dark-green);
    overflow-x: hidden;
    padding-bottom: 70px;
    /* Space for the floating CTA */
}

/* Background layer pattern */
.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    z-index: -1;
    /* Adding a fallback dark gradient just in case image is missing */
    background-color: var(--dark-green);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 15px 15px 15px;
}

/* HEADER */
.header {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 5px 0 5px 0;
}

.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
    animation: fadeInDown 1s ease-out;
}

.header-badges {
    position: absolute;
    top: 20px;
    right: 15px;
}

.halal-icon {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.5));
    animation: pulse 2s infinite;
}

/* RIBBON */
.ribbon-section {
    text-align: center;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.ribbon-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.ribbon {
    display: inline-block;
    background: var(--primary-red);
    padding: 10px 40px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.ribbon::before,
.ribbon::after {
    content: '';
    position: absolute;
    top: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.ribbon::before {
    left: -15px;
    border-right: 15px solid var(--primary-red);
}

.ribbon::after {
    right: -15px;
    border-left: 15px solid var(--primary-red);
}

.ribbon-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* BOWLS SECTION */
.bowls-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .bowls-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.bowl-card {
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
    width: 100%;
}

.bowl-card.visible {
    opacity: 1;
    transform: scale(1);
}

.bowl-image-placeholder {
    width: 90%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    height: auto;
    margin: 0 auto 15px auto;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 3px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.bowl-image-placeholder:hover {
    transform: scale(1.05);
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
}

.fallback-icon {
    position: absolute;
    z-index: 0;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.2);
}

.price-circle-absolute {
    position: absolute;
    top: 5%;
    right: 0%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-red) 0%, var(--dark-red) 100%);
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.item-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-shadow: none;
}

.item-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
    max-width: 250px;
    margin: 0 auto;
}

.supplements-bowls {
    max-width: 400px;
    margin: 5px auto 15px auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* GENERAL MENU grid */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

.menu-category {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.menu-category.visible {
    opacity: 1;
    transform: translateY(0);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    padding-top: 15px;
}

.category-image {
    width: 100px;
    max-width: 120px;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.mt-4 {
    margin-top: 2rem;
}

.category-title {
    margin: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.brush-bg {
    font-family: var(--font-heading);
    font-size: 2rem;
    display: inline-block;
    padding: 5px 25px;
    background: var(--primary-red);
    color: white;
    /* Create a rugged brush look using clip-path, simple version */
    clip-path: polygon(5% 0%, 100% 5%, 95% 100%, 0% 95%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transform: rotate(-2deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.items-list {
    list-style: none;
    margin-top: 15px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    /* border-bottom: 1px dashed rgba(255,255,255,0.2); */
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: translateX(5px);
}

.item-name {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-shadow: none;
}

.item-name.supp {
    color: var(--primary-red);
}

.price-circle {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--primary-red) 0%, var(--dark-red) 100%);
    border: 2px dashed #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.choices-box {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    border: 1px solid var(--primary-red);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
}

.choices-title {
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.choices-text {
    font-size: 0.85rem;
    line-height: 1.4;
    text-shadow: none;
    color: #222;
}

.center-text {
    text-align: center;
}

.text-center {
    text-align: center;
}

/* Supplements Inline */
.inline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.item-desc-inline {
    font-size: 0.8rem;
    color: #666;
    display: block;
}

/* SAUCES */
.sauces-section {
    margin: 40px 0;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.sauces-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.sauces-image {
    width: 50%;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 15px auto;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* FOOTER INFO */
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-badge {
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.location-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.location-link:hover {
    color: var(--primary-red);
}

/* FLOATING CTA */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #b30006 0%, #e3000b 50%, #b30006 100%);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 1.3rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

.floating-cta:hover {
    background: linear-gradient(90deg, #e3000b 0%, #ff1a26 50%, #e3000b 100%);
}

/* ANIMATIONS */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.bobbing {
    animation: bobble 2s infinite ease-in-out;
}

@keyframes bobble {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(-10deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(-3px) rotate(10deg);
    }
}