.font-fun { 
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.3px;
}
.font-logo { 
    font-family: 'Righteous', cursive;
    letter-spacing: 1px;
}

@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes sizzle { 
    0% { transform: scale(1); opacity: 1; } 
    50% { transform: scale(1.1); opacity: 0.8; } 
    100% { transform: scale(1); opacity: 1; } 
}
@keyframes wiggle { 
    0%, 100% { transform: rotate(-3deg); } 
    50% { transform: rotate(3deg); } 
}
@keyframes pulse { 
    0%, 100% { transform: scale(1); } 
    50% { transform: scale(1.1); } 
}
@keyframes float { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-10px); } 
}

.flavor-card {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.flavor-card:hover { 
    transform: translateY(-10px) rotate(2deg); 
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
    border-color: #FF6B6B;
}

.btn-sizzle:hover { 
    transform: translateY(5px); 
    background: linear-gradient(to bottom, #FF6B6B, #FF8E53); 
    transition: all 0.3s ease; 
}

.btn-bounce:hover { animation: bounce 0.5s; }
.btn-spin:hover { animation: spin 0.5s; }
.sizzle { animation: sizzle 3s infinite; }
.wiggle { animation: wiggle 2s infinite; }
.pulse { animation: pulse 2s infinite; }

.plate { 
    clip-path: circle(50% at 50% 50%);
    background: linear-gradient(to bottom, #f3d5b5, #e6c9a8);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dish { 
    clip-path: circle(50% at 50% 50%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.dish:hover { transform: translateY(-5px); }

.rainbow-text { 
    background: linear-gradient(to right, #FF6B6B, #FF8E53, #FFD93D, #6BCB77, #4D96FF, #9B72CF); 
    -webkit-background-clip: text; 
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    background-size: 200% auto;
    animation: rainbow 5s linear infinite;
}

@keyframes rainbow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.text-outline { 
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; 
}

/* Transitions */
.sizzle-transition { 
    transition: all 0.3s ease; 
}
.sizzle-transition:hover { 
    transform: translateY(5px) scale(0.98); 
}

.restaurant-image {
    width: 400px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    border-radius: 20px;
}
.restaurant-image:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
    font-weight: 600;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.restaurant-badge {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}
.restaurant-badge img {
    width: 40px;
    height: 40px;
}
.restaurant-badge span {
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Righteous', cursive;
    letter-spacing: 0.5px;
}

p, li, span {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
}

input, textarea, select {
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.card:hover {
    transform: translateY(-5px);
    border-color: #FF6B6B;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.1);
} 