﻿body {
    font-family: 'Raleway', sans-serif;
    color: #222222;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    position: relative;
}

p,
strong,
span {
    color: #222222;
}

body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('../images/home/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

main {
    position: relative;
    z-index: 1;
}




.nav-menu a:hover {
    color: #be1c22;
}

.current-page {
    color: #be1c22 !important;
}


.menu-parallax {
    position: relative;
    height: 380px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.menu-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.menu-parallax-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.menu-parallax h2 {
    font-family: 'Baloo', cursive;
    font-size: 55px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ffcc00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.menu-parallax p {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
    color: #fff;
    font-weight: 500;
}


.menu-items-grid {
    padding: 80px 0;
    background: #fff;
}

.container {
    max-width: 1800px;
    width: 95%;
    margin: 0 auto;
    padding: 0 120px;
}

.grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.menu-item {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: translateX(5px);
}

.menu-item h4 {
    font-size: 16px;
    color: #28262b;
    margin: 0 0 5px 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item p {
    font-size: 13.5px;
    color: #444444;
    margin: 0;
    font-family: 'Droid Serif', serif;
    font-style: italic;
    line-height: 1.4;
}


.category-info {
    background: #fff;
    border-left: 4px solid #ffc904;
    padding: 15px 25px;
    margin-bottom: 40px;
    font-style: italic;
    color: #666;
    font-size: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}


.footer {
    background: #1a1a1a;
    color: #999;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 900px) {
    .grid-row {
        grid-template-columns: 1fr;
    }

    .menu-parallax h2 {
        font-size: 40px;
    }
}



@-webkit-keyframes pulse-red {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0.7);
    }

    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(234, 29, 44, 0);
    }

    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0.7);
    }

    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 15px rgba(234, 29, 44, 0);
    }

    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(234, 29, 44, 0);
    }
}

.ifood-float {
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 9999;
    width: 70px;
    height: 70px;
    background-color: #EA1D2C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    animation: pulse-red 2s infinite;
}

.ifood-float:hover {
    transform: scale(1.1) rotate(5deg);
}

.ifood-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    outline: none;
}

@media (max-width: 768px) {
    .ifood-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        -webkit-animation: pulse-red 2s infinite !important;
        animation: pulse-red 2s infinite !important;
    }
}