:root {
    /* Colors */
    --red: #E2281B;
    --orange: #FBB113;
    --brown: #340D09; /* Darker brown/black-bean color */
    --dark-gray: #0f0f0f;
    --coral: #FE5F55;
    --light-orange: #FFC354;
    --white: #FFFFFF;
    --light-bg: #FFF8E8;
    
    /* Fonts */
    --font-heading: 'Poetsen One', cursive;
    --font-accent: 'Poetsen One', sans-serif;
    --font-body: 'Noto Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-gray);
    background: url('images/tile_background.png') repeat;
    background-attachment: fixed;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

h4 {
    font-family: var(--font-accent);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    color: var(--red);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--brown);
}

/* Header */
header {
    background-color: var(--red);
    padding: 5px 0; /* Reduced from 10px 0 to compensate for larger logo */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-height: 70px; /* Overall header height remains 70px */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px; 
    min-height: 60px; /* Increased to match new logo height */
}

.logo {
    height: 60px; /* Increased from 50px */
    width: auto; /* Maintain aspect ratio */
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    /* Removed margin-right since there's no longer a button next to it */
}

.nav-links li {
    margin-left: var(--spacing-lg);
}

.nav-links a {
    color: var(--light-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    font-family: var(--font-accent);
}

.nav-links a:hover {
    color: var(--white);
}

.mobile-menu {
    display: none;
    color: var(--light-orange);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Completely Redesigned */
.hero {
    height: 100vh;
    min-height: 600px; /* This might need adjustment for very small screens */
    background: linear-gradient(rgba(52, 13, 9, 0.8), rgba(52, 13, 9, 0.8)), url('images/hero-food.jpg') center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 25px; /* Fixed: Should match header height */
    padding-top: 0; /* Reduced from 5px, can be var(--spacing-xs) if 0 is too tight */
    position: relative;
    z-index: 1;
    box-sizing: border-box; /* Ensure padding and border are included in height */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md); /* Reduced from var(--spacing-lg) */
    width: 100%;
    max-width: 800px;
    position: relative; /* Ensure content is positioned correctly */
    z-index: 10; /* Higher z-index than decorative elements */
}

.hero-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: var(--spacing-xs); /* Reduced from var(--spacing-sm) */
    margin-top: var(--spacing-sm); /* Reduced from var(--spacing-md) */
    filter: drop-shadow(0 0 15px rgba(255, 195, 84, 0.5));
    animation: pulsate 3s infinite alternate ease-in-out;
}

@keyframes pulsate {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 195, 84, 0.3));
        transform: scale(1);
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(255, 195, 84, 0.8));
        transform: scale(1.03);
    }
}

/* Completely revised ticker-style scrolling text */
.ticker-wrap {
    width: 100%;
    margin: var(--spacing-sm) 0; /* Reduced from var(--spacing-md) */
    overflow: hidden;
    position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10%;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(52, 13, 9, 0.95), rgba(52, 13, 9, 0));
}

.ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(52, 13, 9, 0.95), rgba(52, 13, 9, 0));
}

.ticker-row {
    padding: 10px 0;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    width: auto;
}

/* Modified to ensure content is on screen at start */
.ticker-left {
    animation: ticker-left 70s linear infinite; /* Slowed down */
    /* Start at beginning of screen instead of off-screen */
    position: relative;
    left: 0;
}

.ticker-right {
    animation: ticker-right 70s linear infinite; /* Slowed down */
    /* Start visible on screen */
    position: relative;
    left: 0; 
}

.ticker-item {
    display: inline-block;
    padding: 8px 20px;
    margin: 0 10px;
    background: rgba(251, 177, 19, 0.2);
    color: var(--white);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(254, 95, 85, 0.3);
    text-transform: uppercase;
    font-family: var(--font-accent);
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@keyframes ticker-left {
    0% {
        transform: translateX(0); /* Start at beginning */
    }
    100% {
        transform: translateX(-100%); /* Move left by 100% */
    }
}

@keyframes ticker-right {
    0% {
        transform: translateX(-50%); /* Start from middle */
    }
    100% {
        transform: translateX(0); /* Move right to beginning */
    }
}

/* Remove old scrolling styles if they still exist */
.scrolling-container, .scrolling-banner, .scrolling-text, .scrolling-left, .scrolling-right {
    animation: none;
}

/* CTA Section - Now with a background image and refined styles */
.cta-section {
    background: url('images/cta-background.jpg') center/cover;
    color: var(--white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
}

/* Button container for side-by-side buttons */
.cta-buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md); /* Reduced from var(--spacing-lg) */
    width: 100%;
    max-width: 500px;
    position: relative; /* Ensure buttons are positioned correctly */
    z-index: 15; /* Even higher z-index to ensure clickability */
}

/* CTA buttons styled to have same height */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: var(--red);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-sm);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    font-family: var(--font-accent);
    letter-spacing: 1px;
    gap: 10px;
    min-width: 160px;
    height: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(226, 40, 27, 0.3);
}

.cta-button i {
    font-size: 1.2rem; /* Consistent icon size */
}

/* Secondary CTA button style for WhatsApp ordering */
.cta-button-secondary {
    background-color: #25D366; /* WhatsApp green color */
}

.cta-button-secondary:hover {
    background-color: transparent;
    border-color: #25D366;
    color: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Operating hours styling enhancement */
.operating-hours {
    color: var(--white);
    margin-top: var(--spacing-md); /* Reduced from var(--spacing-lg) */
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.operating-hours:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.operating-hours i {
    margin-right: var(--spacing-sm);
    color: var(--orange);
    font-size: 1.2rem;
}

/* Decorative Elements for the Hero */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    background-color: var(--orange);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite alternate;
}

.hero::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero::after {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

/* Additional decorative circles */
.decorative-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* Keep decorative elements behind content */
    pointer-events: none; /* Prevent decorative elements from blocking clicks */
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--orange);
    opacity: 0.1;
    z-index: -1;
}

.circle-1 {
    width: 180px;
    height: 180px;
    top: 25%;
    right: 15%;
    animation: float 7s ease-in-out infinite alternate, pulse 5s ease-in-out infinite;
    animation-delay: 1s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    left: 20%;
    animation: float 9s ease-in-out infinite alternate-reverse, pulse 6s ease-in-out infinite;
    animation-delay: 2s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    top: 60%;
    right: 30%;
    animation: float 12s ease-in-out infinite alternate, pulse 8s ease-in-out infinite;
    animation-delay: 3s;
}

.circle-4 {
    width: 90px;
    height: 90px;
    top: 15%;
    left: 35%;
    animation: float 6s ease-in-out infinite alternate-reverse, pulse 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.circle-5 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 45%;
    animation: float 10s ease-in-out infinite alternate, pulse 7s ease-in-out infinite;
    animation-delay: 2.5s;
}

/* Circle animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(20px) rotate(-5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

/* Menu Section - Updated with gallery background styling */
.menu-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background-color: rgba(52, 13, 9, 0.05);
    border-top: 2px dashed var(--orange);
    border-bottom: 2px dashed var(--orange);
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23E2281B" fill-opacity="0.05" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
    z-index: -1;
}

/* Menu category filter buttons */
.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    gap: 10px;
}

.category-button {
    background-color: var(--white);
    color: var(--dark-gray);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-button:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.category-button.active {
    background-color: var(--red);
    color: var(--white);
}

/* Enhanced menu grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    animation: fadeIn 0.5s ease-in-out;
}

/* New grid layout for wider screens to center the last row */
@media (min-width: 1150px) { /* Breakpoint for 3-column layout */
    .menu-grid {
        grid-template-columns: repeat(6, 1fr); /* Use a 6-column grid for precise placement */
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .menu-card {
        grid-column: span 2; /* Each card will span 2 columns */
    }

    /* Position the last two cards to appear centered under the gaps of the first row */
    .menu-card:nth-child(4) {
        grid-column-start: 2;
        grid-column-end: 4;
    }

    .menu-card:nth-child(5) {
        grid-column-start: 4;
        grid-column-end: 6;
    }
}

.menu-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s;
    position: relative;
    border: 5px solid var(--white);
    outline: 2px solid var(--orange);
    display: flex;
    flex-direction: column;
    min-height: 500px; /* Set minimum height for consistency */
}

/* Fix fadeIn animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure category gallery elements are displayed properly */
.item-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 5;
}

/* Semi-transparent overlay for contrast on hover */
.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(52, 13, 9, 0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--red);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.menu-card-content {
    padding: var(--spacing-md);
    flex: 1; /* Allow content to expand and fill available space */
    display: flex;
    flex-direction: column;
}

.menu-card-header {
    margin-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--orange);
    padding-bottom: var(--spacing-xs);
}

.menu-card h3 {
    color: var(--red);
    font-size: 1.8rem;
    display: inline-block;
}

.menu-card h3 i {
    margin-right: 8px;
    font-size: 1.5rem;
    color: var(--coral);
}

.menu-card h4 {
    color: var(--coral);
    font-size: 1.3rem;
    margin: var(--spacing-md) 0 var(--spacing-sm);
    display: flex;
    align-items: center;
}

.bestseller-tag {
    background-color: var(--orange);
    color: var(--white);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: 10px;
    display: inline-block;
    font-family: var(--font-body);
    font-weight: bold;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-details {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.price {
    font-weight: 700;
    color: var(--brown);
    background-color: var(--light-orange);
    padding: 4px 10px;
    border-radius: 20px;
    font-family: var(--font-accent);
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-orange);
    color: var(--dark-gray);
}

.testimonials-slider {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.testimonial {
    background-color: var(--white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-icon {
    color: var(--orange);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    font-weight: 700;
    color: var(--red);
}

/* Location Section */
.location-section {
    padding: var(--spacing-xl) 0;
    background-color: rgba(52, 13, 9, 0.03);
    position: relative;
}

.location-container {
    display: flex;
    gap: var(--spacing-lg);
    align-items: stretch;
    margin-top: var(--spacing-lg);
}

.map-container {
    flex: 3;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 5px solid var(--white);
    outline: 2px solid var(--orange);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(226, 40, 27, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: relative;
    z-index: 0;
}

.location-info {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    justify-content: space-between;
}

.info-item {
    background-color: var(--white);
    border-radius: 12px;
    padding: var(--spacing-md);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    border-left: 5px solid var(--orange);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.info-item i {
    font-size: 2rem;
    color: var(--red);
    background-color: rgba(251, 177, 19, 0.15);
    padding: 12px;
    border-radius: 50%;
    min-width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h3 {
    color: var(--red);
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.info-item p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.5;
}

/* Enhanced Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-orange);
    color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23E2281B" fill-opacity="0.05" fill-rule="evenodd"%3E%3Ccircle cx="20" cy="20" r="5"/%3E%3C/g%3E%3C/svg%3E');
    z-index: 0;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-card {
    background-color: var(--white);
    width: 100%;
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 5px solid var(--white);
    outline: 2px solid var(--orange);
    transition: transform 0.3s ease;
}

.phone-number {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--red);
    margin: var(--spacing-md) 0;
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background-color: #25D366;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.whatsapp-badge i {
    font-size: 1.2rem;
}

.contact-button {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1.1rem;
}

/* Updated Footer - Match Header Color */
footer {
    background-color: var(--red);
    color: var(--white);
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--orange), var(--coral), var(--orange));
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-logo img {
    height: 80px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.footer-info {
    text-align: center;
    flex: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-info p:first-child {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--red);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Food categories styling in hero section - fixed */
.food-categories {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px; /* Reduced gap */
    margin: var(--spacing-sm) 0; /* Reduced margin */
    padding: 5px 0; /* Reduced padding */
}

.food-item {
    padding: 8px 15px; /* Reduced padding */
    background: rgba(251, 177, 19, 0.2);
    color: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(254, 95, 85, 0.3);
    text-transform: uppercase;
    font-family: var(--font-accent);
    font-size: 1rem; /* Reduced font size */
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.food-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(251, 177, 19, 0.4);
    box-shadow: 0 8px 25px rgba(254, 95, 85, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

/* WhatsApp contact button fixed styling */
.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    margin: 0 auto var(--spacing-md);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background-color: #25D366;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: var(--spacing-md);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    border: 2px solid transparent;
}

.contact-button:hover {
    background-color: transparent;
    border-color: #25D366;
    color: #25D366;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Fix category gallery styling */
.category-details {
    margin: var(--spacing-lg) 0;
    display: none;
}

.category-gallery {
    display: none;
    margin-bottom: var(--spacing-lg);
    background-color: var(--white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border: 5px solid var(--white);
    outline: 2px solid var(--orange);
}

.gallery-title {
    text-align: center;
    color: var(--red);
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
}

.item-photo {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.item-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.item-photo:hover img {
    transform: scale(1.1);
}

.item-caption {
    padding: 12px;
    text-align: center;
    font-family: var(--font-accent);
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.bestseller-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--red);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* New styles for gallery descriptions */
.gallery-description {
    margin-top: var(--spacing-md);
}

.description-item {
    background-color: rgba(52, 13, 9, 0.03);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--coral);
}

.description-item h4 {
    font-family: var(--font-accent);
    color: var(--brown);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.description-item h4 span {
    font-family: var(--font-accent);
    background-color: var(--light-orange);
    color: var(--brown);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 1.1rem;
    white-space: nowrap;
}

.description-item p {
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.sauces-section {
    margin-top: var(--spacing-lg);
}

.sauces-section h4 {
    color: var(--coral);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.sauces-section .item-gallery {
    margin-top: var(--spacing-md);
}

.sauces-list-gallery {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-sm);
}

.sauces-list-gallery li {
    background-color: var(--white);
    padding: var(--spacing-sm);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

/* Burger table styles */
.burger-table {
    display: grid;
    grid-template-columns: 1.2fr 2.5fr 1fr 1fr;
    gap: var(--spacing-sm);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    overflow-x: auto;
}

.burger-header {
    display: contents;
}

.burger-header div {
    font-family: var(--font-accent);
    font-weight: bold;
    color: var(--red);
    padding: var(--spacing-sm);
    border-bottom: 2px solid var(--orange);
    white-space: nowrap;
}

.burger-row {
    display: contents;
}

.burger-row div {
    padding: var(--spacing-sm);
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.burger-row div:nth-child(2) {
    text-align: left;
    justify-content: flex-start;
}

/* Style for sauce list to be more compact and organized */
.sauces-list {
    margin-top: var(--spacing-xs);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
}

.sauce-item {
    font-size: 0.9rem;
    color: var(--dark-gray);
    background-color: rgba(251, 177, 19, 0.1);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 15px;
    border-left: 3px solid var(--orange);
    line-height: 1.4;
    transition: all 0.3s ease;
}

.sauce-item:hover {
    background-color: rgba(251, 177, 19, 0.2);
    transform: translateX(5px);
}

/* Responsive adjustments for map and contact */
@media (max-width: 920px) {
    .location-container {
        flex-direction: column;
    }
    
    .map-container {
        height: 350px;
    }
    
    .location-info {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .info-item {
        flex: 1 1 calc(50% - var(--spacing-md));
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-card, .schedule-card {
        width: 100%;
    }
    
    .location-info {
        flex-direction: column;
    }
    
    .info-item {
        width: 100%;
    }
    
    .map-container {
        height: 300px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    height: 60px;
    background-color: #25D366;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
    padding: 0 20px 0 15px;
}

.floating-whatsapp.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
    color: var(--white) !important;
    font-size: 1.8rem !important;
    transition: all 0.3s ease;
    font-family: "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}

/* Fallback if FontAwesome doesn't load */
.floating-whatsapp i::before {
    content: "\f232" !important; /* WhatsApp Unicode */
}

.floating-text {
    color: var(--white);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-left: 10px;
    white-space: nowrap;
    opacity: 1;
    transform: translateX(0);
}

/* Remove hover animations for text */
.floating-whatsapp:hover .floating-text {
    opacity: 1;
    transform: translateX(0);
}

.floating-whatsapp:hover i {
    transform: scale(0.95);
}

/* Alternative: If FontAwesome still doesn't work, use CSS WhatsApp symbol */
.floating-whatsapp::after {
    content: "📱";
    position: absolute;
    font-size: 1.8rem;
    display: none;
}

/* Show fallback emoji if icon doesn't load */
.floating-whatsapp i:empty::before {
    content: "📱";
    font-family: inherit;
}

