* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
}

a{
    text-decoration: none;
}
.navbar {
    display: flex;
    z-index: -1000;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient( to left, #55050e, #680f30);
    color: white;
    padding: 0px 20px;
}
.menu-container {
    display: flex;
    overflow-x: hidden;
    white-space: nowrap;
    /* background: #6a0dad; */
    background: linear-gradient( to left, #55050e, #680f30);

    padding: 10px;
}
.menu-item {
    flex: none;
    padding: 10px 20px;
    background: white;
    margin-right: 10px;
    border-radius: 20px;
    cursor: pointer;
}
.icon{
    position: absolute;
    right: 25px;
}
.menu-item.active {
    background: #4b0082;
    color: white;
}
.content {
    padding: 20px;
}
.section {
    display: none;
}
.section.active {
    display: block;
}
.copyright a{
    color: rgba(211, 92, 7, 0.799);
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: 10px;
}

.rating {
    font-size: 18px;
}

.lang-btn {
    background: white;
    color: #800080;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}
.menu-item {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.footer-nav {
    background: linear-gradient(to right, #7B1FA2, #9C27B0);
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
}

.social-links img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.social-links a:hover img {
    transform: scale(1.2);
}

/* Mobil versiya */
@media (max-width: 600px) {
    .footer-nav {
        padding: 15px 0;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
}




.category-container h2 {
    text-align: center;
    color: #333;
}


.marquee{
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    font-size: 30px;
    
}

.category-container {
    padding: 15px;
    background: white;
    max-height: 80vh; /* Ekranga sig‘ishi uchun */
    overflow-y: auto; /* Scroll qo‘shish */
    border-radius: 10px;
    margin: 10px;
    z-index: 9999;
   margin-bottom: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-list {
    display: flex;
    flex-direction: column; /* Ustun shaklida joylashish */
    gap: 10px;
}

.category {
    width: 100%; /* To‘liq ekranga sig‘ishi uchun */
    display: flex;
    align-items: center;
    background: #f4f4f4;
    padding: 20px;
    margin-top: 10px;
    border-radius: 8px;
    transition: 0.3s;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    /* background: #222; */
    padding: 10px 0;
}

.marquee-text {
    display: inline-block;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    animation: marquee-animation 10s linear infinite;
}

@keyframes marquee-animation {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
.category img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.category span {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding-left: 20px;
}

/* Mobil versiya */
@media (max-width: 600px) {
    .category {
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        width: 130px;
        height: 130px;
    }

 
}

.nav-link {
    font-weight: 700;
    color: rgba(0, 0, 0, 0.8) !important;
}



  
  .nav-link:hover, .nav-link:focus {
    color: #6c757d;
  }
  
  .nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
  }
  .footer {
    background: linear-gradient(90deg, #590519, #590d59);
   
    color: white;
    text-align: center;
    padding: 4px 0;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-icons a:hover {
    color: #ffcc00;
    transform: scale(1.1);
}

.social-icons i {
    font-size: 24px;
}

.copyright {
    font-size: 14px;
    color: #aaa;
}

@media (max-width: 600px) {
    .social-icons a {
        font-size: 20px;
    }

    .social-icons i {
        font-size: 20px;
    }

    .copyright {
        font-size: 12px;
    }
}
.footer {
    /* background: #222; */
    color: white;
    text-align: center;
    padding: 4px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffcc00;
}

@media (max-width: 600px) {
    .social-icons a {
        font-size: 20px;
    }
}
/* ocon
 */


 /* Asosiy stil */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

/* Menyu konteyneri */
.menu {
    max-width: 400px;
    margin: auto;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Kategoriyalar */
.category {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 10px;
}

.category-btn {
    flex: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 20px;
    background: #eee;
    cursor: pointer;
    white-space: nowrap;
}

.category-btn.active {
    background: #7a2cf2;
    color: white;
}

/* Menyu elementlari */
.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Rasm */
.menu-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

/* Ovqat haqida info */
.menu-info {
    flex: 1;
}

.menu-title {
    font-size: 16px;
    font-weight: bold;
}

.menu-price {
    font-size: 14px;
    color: #666;
}

/* Qo‘shish tugmasi */
.add-button {
    padding: 6px 10px;
    border: 2px solid #18a558;
    background: transparent;
    color: #18a558;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

.add-button:hover {
    background: #18a558;
    color: white;
}



.leaf {
    z-index: -1;
    position: fixed;
    top: -50px;
    width: 50px;
    height: 50px;
    background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQGpJn3Ud0fUTbD9l6RZ0ZFKd0BKlpMfh-lLNZMT1x8pqILVg_wf4RbVeBUKUyA4XMdo5Y&usqp=CAU') no-repeat center/contain; /* Pushti barg rasmi */
    opacity: 0.8;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Yengil fon effekti */
.fon {
  /* height: 100vh; */
    background: linear-gradient(180deg, #ffb6c1,#fff, #fff); /* Pushti gradient */
    transition: background 3s ease-in-out;
}