.font-playfair { font-family: 'Playfair Display', serif; }
.font-inter { font-family: 'Inter', sans-serif; }

.menu-item {
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px #4a4a4a;
}

.category-tab {
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-tab.active {
    background: linear-gradient(135deg, #dfc182, #f4e4a6);
    color: #2d1810;
}

.category-tab:hover {
    background: linear-gradient(135deg, #dfc182, #f4e4a6);
    color: #2d1810;
}

.menu-section {
    display: none;
}

/* Menu Page - Food Categories Buttons ------------*/
.menu-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-tag {
    background: linear-gradient(135deg, #d4af37, #f4e4a6);
    color: #2d1810;
}

.menu-category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    text-align: center;
}
.menu-category-tabs .category-tab {
    min-width: 180px;
    max-width: 180px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 575px) {
    .menu-category-tabs .category-tab {
        min-width: 120px;
        max-width: 100%;
        font-size: 0.7rem;
        height: 44px;
    }
}
/* End----------------------------------- */

/* Allergy Label & Menu Info */
.allergy-label{
    color: #c19655;
}


/* Jorny CSS */
/* ------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');
        
.journey-line {
    background: linear-gradient(90deg, #e36159 0%, #d4534a 50%, #c44539 100%);
    box-shadow: 0 0 20px rgba(227, 97, 89, 0.3);
}
 
.journey-step {
    transition: all 0.4s ease;
    cursor: pointer;
}
 
.journey-step:hover {
    transform: translateY(-5px);
}
 
.journey-step.active {
    transform: translateY(-8px);
}
 
.journey-circle {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 25px rgba(227, 97, 89, 0.2);
    transition: all 0.3s ease;
}
 
.journey-step:hover .journey-circle {
    box-shadow: 0 12px 35px rgba(227, 97, 89, 0.4);
}
 
.journey-step.active .journey-circle {
    box-shadow: 0 15px 40px rgba(227, 97, 89, 0.5);
    border-color: #c44539 !important;
}
 
.step-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}
 
.step-1 { animation-delay: 0.2s; }
.step-2 { animation-delay: 0.4s; }
.step-3 { animation-delay: 0.6s; }
.step-4 { animation-delay: 0.8s; }
 
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
 
.challenge-section {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}
 
.challenge-section.active {
    max-height: 300px;
    opacity: 1;
}
 
.decorative-element {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
}
 
.floating {
    animation: float 3s ease-in-out infinite;
}
 
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.pulse-ring {
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}
/* ------------------------------------- */