/* Fluid Typography & Layout */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.img-float {
    animation: float 6s ease-in-out infinite;
}

.food-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(233, 83, 34, 0.15);
}

.food-card img {
    transition: transform 0.6s ease;
}

.food-card:hover img {
    transform: scale(1.05) rotate(2deg);
}

.btn-primary {
    background: linear-gradient(135deg, #E95322, #D84211);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: scaleY(1);
}

.btn-primary:active {
    transform: scale(0.97);
}

/* Custom decorative Blob */
.bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233,83,34,0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}