/* _content/Arabica_Bar/Components/Comps/AboutSection.razor.rz.scp.css */
.about-section[b-tzkcwpnw8w] {
    padding: 100px 0;
    background: linear-gradient(180deg, #f4f1eb 0%, #e8e2d4 100%);
    position: relative;
    overflow: hidden;
}

.about-section[b-tzkcwpnw8w]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a574' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.container[b-tzkcwpnw8w] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header[b-tzkcwpnw8w] {
    text-align: center;
    margin-bottom: 80px;
}

.section-title[b-tzkcwpnw8w] {
    font-size: 3rem;
    color: #2c1810;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title[b-tzkcwpnw8w]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4a574;
    border-radius: 2px;
}

.section-subtitle[b-tzkcwpnw8w] {
    font-size: 1.2rem;
    color: #6b3e23;
    font-style: italic;
    margin-top: 20px;
}

.about-content[b-tzkcwpnw8w] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text[b-tzkcwpnw8w] {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.story-card[b-tzkcwpnw8w] {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-card[b-tzkcwpnw8w]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, #6b3e23);
}

.story-card:hover[b-tzkcwpnw8w] {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 24, 16, 0.15);
}

.story-icon[b-tzkcwpnw8w] {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce-gentle-b-tzkcwpnw8w 2s ease-in-out infinite;
}

.story-card h3[b-tzkcwpnw8w] {
    font-size: 1.5rem;
    color: #2c1810;
    margin-bottom: 15px;
    font-weight: 600;
}

.story-card p[b-tzkcwpnw8w] {
    color: #4a2c17;
    line-height: 1.7;
    font-size: 1rem;
}

.about-stats[b-tzkcwpnw8w] {
    background: rgba(44, 24, 16, 0.95);
    padding: 40px 30px;
    border-radius: 15px;
    color: #f4f1eb;
    box-shadow: 0 15px 40px rgba(44, 24, 16, 0.3);
    position: sticky;
    top: 100px;
}

.stat-item[b-tzkcwpnw8w] {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
}

.stat-item:last-child[b-tzkcwpnw8w] {
    border-bottom: none;
    margin-bottom: 0;
}

.stat-number[b-tzkcwpnw8w] {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4a574;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.stat-label[b-tzkcwpnw8w] {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.stat-item:hover .stat-number[b-tzkcwpnw8w] {
    transform: scale(1.1);
    color: #f4f1eb;
}

@keyframes bounce-gentle-b-tzkcwpnw8w {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes fadeInUp-b-tzkcwpnw8w {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-card[b-tzkcwpnw8w] {
    animation: fadeInUp-b-tzkcwpnw8w 0.6s ease forwards;
}

.story-card:nth-child(1)[b-tzkcwpnw8w] { animation-delay: 0.1s; }
.story-card:nth-child(2)[b-tzkcwpnw8w] { animation-delay: 0.2s; }
.story-card:nth-child(3)[b-tzkcwpnw8w] { animation-delay: 0.3s; }

@media (max-width: 968px) {
    .about-content[b-tzkcwpnw8w] {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats[b-tzkcwpnw8w] {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item[b-tzkcwpnw8w] {
        margin-bottom: 0;
        border-bottom: none;
        border-right: 1px solid rgba(212, 165, 116, 0.3);
    }
    
    .stat-item:nth-child(even)[b-tzkcwpnw8w] {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .about-section[b-tzkcwpnw8w] {
        padding: 60px 0;
    }
    
    .section-title[b-tzkcwpnw8w] {
        font-size: 2.2rem;
    }
    
    .story-card[b-tzkcwpnw8w] {
        padding: 30px 20px;
    }
    
    .about-stats[b-tzkcwpnw8w] {
        grid-template-columns: 1fr;
    }
    
    .stat-item[b-tzkcwpnw8w] {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 116, 0.3);
    }
    
    .stat-item:last-child[b-tzkcwpnw8w] {
        border-bottom: none;
    }
}
/* _content/Arabica_Bar/Components/Comps/ContactSection.razor.rz.scp.css */
.contact-section[b-hf7r6kf79y] {
    padding: 100px 0;
    background: linear-gradient(180deg, #f4f1eb 0%, #e8e2d4 50%, #d4a574 100%);
    position: relative;
}

.container[b-hf7r6kf79y] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header[b-hf7r6kf79y] {
    text-align: center;
    margin-bottom: 80px;
}

.section-title[b-hf7r6kf79y] {
    font-size: 3rem;
    color: #2c1810;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title[b-hf7r6kf79y]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #6b3e23;
    border-radius: 2px;
}

.section-subtitle[b-hf7r6kf79y] {
    font-size: 1.2rem;
    color: #4a2c17;
    font-style: italic;
    margin-top: 20px;
}

.contact-content[b-hf7r6kf79y] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info[b-hf7r6kf79y] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-card[b-hf7r6kf79y] {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(44, 24, 16, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #d4a574;
}

.info-card:hover[b-hf7r6kf79y] {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.15);
}

.info-icon[b-hf7r6kf79y] {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: bounce-gentle-b-hf7r6kf79y 3s ease-in-out infinite;
}

.info-card h3[b-hf7r6kf79y] {
    font-size: 1.3rem;
    color: #2c1810;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p[b-hf7r6kf79y] {
    color: #4a2c17;
    line-height: 1.5;
    margin: 0;
}

.contact-form-container[b-hf7r6kf79y] {
    background: rgba(44, 24, 16, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(44, 24, 16, 0.3);
    backdrop-filter: blur(10px);
}

.contact-form h3[b-hf7r6kf79y] {
    color: #d4a574;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group[b-hf7r6kf79y] {
    margin-bottom: 25px;
}

.form-group label[b-hf7r6kf79y] {
    display: block;
    margin-bottom: 8px;
    color: #f4f1eb;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input[b-hf7r6kf79y],
.form-group select[b-hf7r6kf79y],
.form-group textarea[b-hf7r6kf79y] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    background: rgba(244, 241, 235, 0.1);
    color: #f4f1eb;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input[b-hf7r6kf79y]::placeholder,
.form-group textarea[b-hf7r6kf79y]::placeholder {
    color: rgba(244, 241, 235, 0.5);
}

.form-group input:focus[b-hf7r6kf79y],
.form-group select:focus[b-hf7r6kf79y],
.form-group textarea:focus[b-hf7r6kf79y] {
    outline: none;
    border-color: #d4a574;
    background: rgba(244, 241, 235, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.form-group select[b-hf7r6kf79y] {
    cursor: pointer;
}

.form-group select option[b-hf7r6kf79y] {
    background: #2c1810;
    color: #f4f1eb;
}

.form-group textarea[b-hf7r6kf79y] {
    resize: vertical;
    min-height: 100px;
}

.submit-btn[b-hf7r6kf79y] {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, #d4a574, #6b3e23);
    color: #f4f1eb;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover[b-hf7r6kf79y] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.submit-btn:active[b-hf7r6kf79y] {
    transform: translateY(0);
}

.btn-icon[b-hf7r6kf79y] {
    font-size: 1.2rem;
    animation: bounce-gentle-b-hf7r6kf79y 2s ease-in-out infinite;
}

.map-section[b-hf7r6kf79y] {
    text-align: center;
}

.map-section h3[b-hf7r6kf79y] {
    font-size: 2rem;
    color: #2c1810;
    margin-bottom: 30px;
}

.map-placeholder[b-hf7r6kf79y] {
    background: rgba(44, 24, 16, 0.9);
    border-radius: 15px;
    padding: 60px 40px;
    color: #f4f1eb;
    position: relative;
    overflow: hidden;
}

.map-placeholder[b-hf7r6kf79y]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a574' fill-opacity='0.1'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.map-content[b-hf7r6kf79y] {
    position: relative;
    z-index: 2;
}

.map-icon[b-hf7r6kf79y] {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce-gentle-b-hf7r6kf79y 4s ease-in-out infinite;
}

.map-content p[b-hf7r6kf79y] {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #d4a574;
}

.transport-info[b-hf7r6kf79y] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.transport-item[b-hf7r6kf79y] {
    background: rgba(212, 165, 116, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(212, 165, 116, 0.3);
    backdrop-filter: blur(5px);
}

@keyframes bounce-gentle-b-hf7r6kf79y {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 968px) {
    .contact-content[b-hf7r6kf79y] {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info[b-hf7r6kf79y] {
        grid-template-columns: 1fr;
        order: 2;
    }
    
    .contact-form-container[b-hf7r6kf79y] {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section[b-hf7r6kf79y] {
        padding: 60px 0;
    }
    
    .section-title[b-hf7r6kf79y] {
        font-size: 2.2rem;
    }
    
    .contact-info[b-hf7r6kf79y] {
        gap: 20px;
    }
    
    .info-card[b-hf7r6kf79y] {
        padding: 25px 15px;
    }
    
    .contact-form-container[b-hf7r6kf79y] {
        padding: 30px 20px;
    }
    
    .map-placeholder[b-hf7r6kf79y] {
        padding: 40px 20px;
    }
    
    .transport-info[b-hf7r6kf79y] {
        flex-direction: column;
        align-items: center;
    }
}
/* _content/Arabica_Bar/Components/Comps/HeroSection.razor.rz.scp.css */
.hero-section[b-s8n8sn517v] {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c17 50%, #6b3e23 100%);
    position: relative;
    overflow: hidden;
}

.hero-content[b-s8n8sn517v] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 90%;
    align-items: center;
    z-index: 2;
}

.hero-text[b-s8n8sn517v] {
    color: #f4f1eb;
}

.hero-title[b-s8n8sn517v] {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.arabica[b-s8n8sn517v] {
    color: #d4a574;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bar[b-s8n8sn517v] {
    color: #f4f1eb;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle[b-s8n8sn517v] {
    font-size: 1.5rem;
    color: #d4a574;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-description[b-s8n8sn517v] {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons[b-s8n8sn517v] {
    display: flex;
    gap: 1rem;
}

.btn[b-s8n8sn517v] {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary[b-s8n8sn517v] {
    background: #d4a574;
    color: #2c1810;
}

.btn-primary:hover[b-s8n8sn517v] {
    background: #f4f1eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.btn-secondary[b-s8n8sn517v] {
    background: transparent;
    color: #d4a574;
    border-color: #d4a574;
}

.btn-secondary:hover[b-s8n8sn517v] {
    background: #d4a574;
    color: #2c1810;
    transform: translateY(-2px);
}

.hero-visual[b-s8n8sn517v] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.coffee-cup[b-s8n8sn517v] {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #8B4513, #A0522D);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float-b-s8n8sn517v 3s ease-in-out infinite;
}

.coffee-cup[b-s8n8sn517v]::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #2c1810;
    border-radius: 50%;
    box-shadow: inset 0 5px 10px rgba(212, 165, 116, 0.2);
}

.steam[b-s8n8sn517v] {
    position: absolute;
    background: rgba(244, 241, 235, 0.6);
    border-radius: 50px;
    animation: steam-b-s8n8sn517v 2s ease-in-out infinite;
}

.steam-1[b-s8n8sn517v] {
    width: 4px;
    height: 40px;
    top: -40px;
    left: 80px;
    animation-delay: 0s;
}

.steam-2[b-s8n8sn517v] {
    width: 3px;
    height: 35px;
    top: -35px;
    left: 100px;
    animation-delay: 0.5s;
}

.steam-3[b-s8n8sn517v] {
    width: 4px;
    height: 45px;
    top: -45px;
    left: 120px;
    animation-delay: 1s;
}

.coffee-beans[b-s8n8sn517v] {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bean[b-s8n8sn517v] {
    position: absolute;
    width: 20px;
    height: 30px;
    background: #8B4513;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float-beans-b-s8n8sn517v 4s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.bean[b-s8n8sn517v]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 60%;
    background: #654321;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.bean-1[b-s8n8sn517v] {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bean-2[b-s8n8sn517v] {
    top: 40%;
    right: 5%;
    animation-delay: 1s;
}

.bean-3[b-s8n8sn517v] {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}

.bean-4[b-s8n8sn517v] {
    top: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

.bean-5[b-s8n8sn517v] {
    bottom: 10%;
    right: 10%;
    animation-delay: 0.5s;
}

.scroll-indicator[b-s8n8sn517v] {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #d4a574;
    animation: bounce-b-s8n8sn517v 2s infinite;
}

.scroll-indicator span[b-s8n8sn517v] {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arrow-down[b-s8n8sn517v] {
    width: 20px;
    height: 20px;
    border-right: 2px solid #d4a574;
    border-bottom: 2px solid #d4a574;
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes float-b-s8n8sn517v {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes steam-b-s8n8sn517v {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
}

@keyframes float-beans-b-s8n8sn517v {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-5deg);
    }
}

@keyframes bounce-b-s8n8sn517v {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-content[b-s8n8sn517v] {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title[b-s8n8sn517v] {
        font-size: 2.5rem;
    }
    
    .coffee-cup[b-s8n8sn517v] {
        width: 150px;
        height: 150px;
    }
    
    .hero-buttons[b-s8n8sn517v] {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* _content/Arabica_Bar/Components/Comps/MenuSection.razor.rz.scp.css */
.menu-section[b-gf6ttgl50c] {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c1810 0%, #4a2c17 100%);
    color: #f4f1eb;
    position: relative;
    overflow: hidden;
}

.menu-section[b-gf6ttgl50c]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a574' fill-opacity='0.03'%3E%3Cpath d='M40 40c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm20 0c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.container[b-gf6ttgl50c] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section-header[b-gf6ttgl50c] {
    text-align: center;
    margin-bottom: 80px;
}

.section-title[b-gf6ttgl50c] {
    font-size: 3rem;
    color: #d4a574;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title[b-gf6ttgl50c]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #f4f1eb;
    border-radius: 2px;
}

.section-subtitle[b-gf6ttgl50c] {
    font-size: 1.2rem;
    color: #f4f1eb;
    font-style: italic;
    margin-top: 20px;
    opacity: 0.9;
}

.menu-categories[b-gf6ttgl50c] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.menu-category[b-gf6ttgl50c] {
    background: rgba(244, 241, 235, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.menu-category:hover[b-gf6ttgl50c] {
    transform: translateY(-5px);
    background: rgba(244, 241, 235, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.category-title[b-gf6ttgl50c] {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    color: #d4a574;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 165, 116, 0.3);
}

.category-title .icon[b-gf6ttgl50c] {
    font-size: 2rem;
    animation: bounce-gentle-b-gf6ttgl50c 3s ease-in-out infinite;
}

.menu-items[b-gf6ttgl50c] {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item[b-gf6ttgl50c] {
    position: relative;
    padding: 25px;
    background: rgba(244, 241, 235, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.menu-item[b-gf6ttgl50c]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #d4a574, transparent);
    transition: width 0.3s ease;
}

.menu-item:hover[b-gf6ttgl50c] {
    background: rgba(244, 241, 235, 0.08);
    transform: translateX(5px);
}

.menu-item:hover[b-gf6ttgl50c]::before {
    width: 100%;
    opacity: 0.1;
}

.menu-item.featured[b-gf6ttgl50c] {
    background: rgba(212, 165, 116, 0.1);
    border-color: #d4a574;
    position: relative;
}

.menu-item.featured[b-gf6ttgl50c]::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-top: 25px solid #d4a574;
}

.featured-badge[b-gf6ttgl50c] {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #d4a574;
    color: #2c1810;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.item-header[b-gf6ttgl50c] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.item-name[b-gf6ttgl50c] {
    font-size: 1.3rem;
    color: #f4f1eb;
    font-weight: 600;
    margin: 0;
}

.item-price[b-gf6ttgl50c] {
    font-size: 1.2rem;
    color: #d4a574;
    font-weight: bold;
    white-space: nowrap;
    margin-left: 15px;
}

.item-description[b-gf6ttgl50c] {
    color: rgba(244, 241, 235, 0.8);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

@keyframes bounce-gentle-b-gf6ttgl50c {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes fadeInUp-b-gf6ttgl50c {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-category[b-gf6ttgl50c] {
    animation: fadeInUp-b-gf6ttgl50c 0.6s ease forwards;
}

.menu-category:nth-child(1)[b-gf6ttgl50c] { animation-delay: 0.1s; }
.menu-category:nth-child(2)[b-gf6ttgl50c] { animation-delay: 0.2s; }
.menu-category:nth-child(3)[b-gf6ttgl50c] { animation-delay: 0.3s; }

@media (max-width: 768px) {
    .menu-section[b-gf6ttgl50c] {
        padding: 60px 0;
    }
    
    .section-title[b-gf6ttgl50c] {
        font-size: 2.2rem;
    }
    
    .menu-categories[b-gf6ttgl50c] {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .menu-category[b-gf6ttgl50c] {
        padding: 30px 20px;
    }
    
    .item-header[b-gf6ttgl50c] {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .item-price[b-gf6ttgl50c] {
        margin-left: 0;
    }
    
    .category-title[b-gf6ttgl50c] {
        font-size: 1.5rem;
    }
}
/* _content/Arabica_Bar/Components/Comps/Navigation.razor.rz.scp.css */
.main-nav[b-xcd1ikov9w] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(44, 24, 16, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled[b-xcd1ikov9w] {
    background: rgba(44, 24, 16, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.3);
}

.nav-container[b-xcd1ikov9w] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand[b-xcd1ikov9w] {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.brand-arabica[b-xcd1ikov9w] {
    color: #d4a574;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.brand-bar[b-xcd1ikov9w] {
    color: #f4f1eb;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.nav-menu[b-xcd1ikov9w] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item[b-xcd1ikov9w] {
    position: relative;
}

.nav-link[b-xcd1ikov9w] {
    color: #f4f1eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link[b-xcd1ikov9w]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover[b-xcd1ikov9w]::before {
    left: 100%;
}

.nav-link:hover[b-xcd1ikov9w] {
    color: #d4a574;
    background: rgba(212, 165, 116, 0.1);
    transform: translateY(-2px);
}

.nav-link.active[b-xcd1ikov9w] {
    color: #2c1810;
    background: #d4a574;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.nav-link.active:hover[b-xcd1ikov9w] {
    color: #2c1810;
    background: #f4f1eb;
}

.nav-toggle[b-xcd1ikov9w] {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    gap: 4px;
}

.nav-toggle .bar[b-xcd1ikov9w] {
    width: 25px;
    height: 3px;
    background: #f4f1eb;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .bar:nth-child(1)[b-xcd1ikov9w] {
    transform: rotate(45deg) translate(7px, 7px);
    background: #d4a574;
}

.nav-toggle.active .bar:nth-child(2)[b-xcd1ikov9w] {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3)[b-xcd1ikov9w] {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #d4a574;
}

@media (max-width: 768px) {
    .nav-toggle[b-xcd1ikov9w] {
        display: flex;
    }
    
    .nav-menu[b-xcd1ikov9w] {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(44, 24, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-top: 1px solid rgba(212, 165, 116, 0.2);
        box-shadow: 0 10px 30px rgba(44, 24, 16, 0.5);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active[b-xcd1ikov9w] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-item[b-xcd1ikov9w] {
        text-align: center;
        padding: 0 20px;
    }
    
    .nav-link[b-xcd1ikov9w] {
        display: block;
        padding: 15px 20px;
        border-radius: 0;
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
        margin: 0;
    }
    
    .nav-link:last-child[b-xcd1ikov9w] {
        border-bottom: none;
    }
    
    .nav-link:hover[b-xcd1ikov9w] {
        background: rgba(212, 165, 116, 0.1);
        transform: translateY(0);
        padding-left: 30px;
    }
    
    .nav-brand[b-xcd1ikov9w] {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container[b-xcd1ikov9w] {
        padding: 0 15px;
    }
    
    .nav-brand[b-xcd1ikov9w] {
        font-size: 1.3rem;
    }
}
/* _content/Arabica_Bar/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-g4oz4fw7bv] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-g4oz4fw7bv] {
    flex: 1;
    padding: 0;
    margin: 0;
}

#blazor-error-ui[b-g4oz4fw7bv] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-g4oz4fw7bv] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Arabica_Bar/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-zoqjr8qamo] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-zoqjr8qamo] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-zoqjr8qamo] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-zoqjr8qamo] {
    font-size: 1.1rem;
}

.bi[b-zoqjr8qamo] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-zoqjr8qamo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-zoqjr8qamo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-zoqjr8qamo] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-zoqjr8qamo] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-zoqjr8qamo] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-zoqjr8qamo] {
        padding-bottom: 1rem;
    }

    .nav-item[b-zoqjr8qamo]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-zoqjr8qamo]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-zoqjr8qamo]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-zoqjr8qamo] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-zoqjr8qamo] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-zoqjr8qamo] {
        display: none;
    }

    .nav-scrollable[b-zoqjr8qamo] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
