@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght=400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #121212;
    color: #ecf0f1;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 50px;
}

header {
    text-align: center;
    padding: 15px 10px 25px;
    background-color: #1a1a1a;
    border-bottom: 2px solid #e74c3c;
    width: 100%;
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    gap: 12px;              
    margin-bottom: 15px;
    width: 100%;
}

.main-logo-img {
    max-width: 250px; 
    width: 100%;
    height: auto;
}

.status-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;            
}

.status-badge {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.status-badge.open {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.4);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.1);
}

.status-badge.closed {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.4);
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.1);
}

.status-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: currentColor;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.lang-switcher {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.lang-btn {
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    transition: 0.3s;
    font-size: 0.8rem;
}

.lang-btn.active {
    background-color: #58a670;
    color: white;
}

.header-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;               
    margin-bottom: 20px;
    flex-wrap: wrap;        
}

.contact-link-top {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 20px;
    transition: 0.3s;
    padding: 0 16px;         
    height: 36px;           
    min-width: 145px;       
}

.contact-link-top .icon {
    font-size: 1rem;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
}

.instagram-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    fill: currentColor;
}

.contact-link-top:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.menu-tabs-main {
    display: flex;
    justify-content: center;      
    align-items: center;
    gap: 12px;
    padding: 5px 15px;
    width: 100%;
}


.tab-btn-main {
    background: #2a2a2a;
    color: #ecf0f1;
    border: none;
    padding: 8px 20px;      
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;     
    transition: 0.3s;
    border: 1px solid #333;
    min-width: 110px;     
    text-align: center;
}

.tab-btn-main.active {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.menu-wrapper {
    max-width: 600px;
    margin: 20px auto;
    padding: 0 20px;
}

.main-section {
    display: none;
}

.main-section.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.sub-category-block {
    margin-bottom: 45px;
}

.category-title {
    font-size: 1.3rem;
    color: #e67e22;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.category-image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
    height: 140px; 
    gap: 15px;
}

.category-banner-img {
    height: 100%;
    width: auto;
    max-width: 45%; 
    object-fit: contain; 
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #2a2a2a;
}

.price {
    color: #f1c40f;
    font-weight: 700;
    min-width: 75px;
    text-align: right;
}

.contact-footer {
    text-align: center;
    padding: 30px;
    color: #555;
    font-size: 0.8rem;
}

.instagram-icon {
    width: 16px;              
    height: 16px;
    margin-right: 8px;        
    display: inline-block;
    vertical-align: middle;
    transition: fill 0.3s ease;
}