/*
Theme Name: Liisu Bites
Theme URI: 
Author: Antigravity
Author URI: 
Description: A custom WordPress theme for Liisu Bites Foodtruck and Catering.
Version: 1.0
License: 
License URI: 
Text Domain: liisubites
Tags: custom-background, custom-colors, custom-menu, featured-images
*/

body {
    background-color: theme('colors.liisu-bg');
    color: theme('colors.liisu-black');
    font-family: theme('fontFamily.body');
    scroll-behavior: smooth;
}

.section-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: theme('boxShadow.liisu-subtle');
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.section-card:hover {
    box-shadow: theme('boxShadow.liisu-hover');
    transform: translateY(-4px);
}

.brutal-btn {
    background-color: theme('colors.liisu-yellow');
    color: theme('colors.liisu-black');
    border-radius: 8px;
    padding: 1rem 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.025em;
    font-size: 0.875rem;
}

.brutal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(253, 199, 39, 0.4);
    background-color: #ffce3b;
}

.brutal-btn-dark {
    background-color: theme('colors.liisu-black');
    color: white;
}

.brutal-btn-dark:hover {
    background-color: #2a2a2a;
    box-shadow: 0 10px 25px -5px rgba(30, 30, 30, 0.3);
}

.brush-title {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0 0.5rem;
}

.brush-title::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: theme('colors.liisu-yellow');
    z-index: -1;
    opacity: 0.6;
}

.nav-link {
    position: relative;
    font-weight: 700;
    color: theme('colors.liisu-black');
    padding-bottom: 0.25rem;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: theme('colors.liisu-yellow');
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.food-pattern {
    background-image: radial-gradient(#FDC727 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.15;
}

.blob-shape {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
}
