/* Custom styles */
.text-stroke-light {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.menu-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #FF6B45, #FFC233);
    border-radius: 8px 8px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-card:hover::before {
    opacity: 1;
}

.food-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.testimonial-card {
    min-width: 320px;
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.owner-card {
    transition: all 0.3s ease;
}

.owner-card:hover {
    transform: translateY(-5px);
}

.section-divider {
    height: 80px;
    background: linear-gradient(to bottom right, transparent 49.5%, #F8F4E9 50%), linear-gradient(to top right, transparent 49.5%, #F8F4E9 50%);
}

.dark .section-divider {
    background: linear-gradient(to bottom right, transparent 49.5%, #2D2424 50%), linear-gradient(to top right, transparent 49.5%, #2D2424 50%);
}

.gradient-text {
    background: linear-gradient(45deg, #FF6B45, #FFC233);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.food-overlay {
    background: linear-gradient(to top, rgba(45, 36, 36, 0.8) 0%, rgba(45, 36, 36, 0.4) 50%, transparent 100%);
}

/* Additional styles for gallery items */
.gallery-item {
    transition: all 0.7s ease;
}

.gallery-item img {
    transition: transform 0.7s ease;
}

.gallery-overlay {
    transition: opacity 0.7s ease;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.gallery-title {
    transition: transform 0.7s ease;
}