body {
    font-family: 'Fredoka', sans-serif;
    background-color: #2c1810;
}

.font-theme {
    font-family: 'MedievalSharp', cursive;
}

/* .wood-pattern {
    background-color: #3e2723;
    background-image: repeating-linear-gradient(45deg, #2d1b18 0, #2d1b18 2px, #3e2723 0, #3e2723 50%);
    background-size: 20px 20px;
} */

.food-item {
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.3));
}

.food-item:hover {
    transform: scale(1.1) rotate(5deg);
}

.food-item.selected {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.8));
}

.food-item.selected::after {
    content: '✓';
    position: absolute;
    top: -10px;
    right: -10px;
    background: #d97706;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid white;
}

.scroll-bg {
    background: #fef3c7;
    box-shadow: inset 0 0 40px rgba(120, 53, 15, 0.2);
    border: 2px solid #b45309;
    position: relative;
}

.scroll-bg::before {
    content: '';
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    border: 1px dashed #b45309;
    pointer-events: none;
}

/* SEO Content Styles */
.seo-content {
    background: #fefce8;
    color: #451a03;
}

.seo-content h2,
.seo-content h3 {
    font-family: 'MedievalSharp', cursive;
    color: #7c2d12;
}