 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            height: 100%;
         margin: 0;
         padding: 0;
         background-image: url('images/whiteWall.jpg');
         background-size: cover;      
         background-position: center; 
         background-attachment: fixed;

            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
           
            min-height: 100vh;
        }

        .header {
             
            background-image: url("images/banner.png"); 
            background-size:auto;   
            background-position: center; 
            background-repeat:no-repeat;
            height:100px; 
            padding: 15px 0;
            position:relative;
            top: 0px;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .menu-icon {
            display: flex;
            align-items: center;
            height: 100%;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
            padding: 20px 0;
            
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .menu-icon:hover {
            background-color: rgba(255,255,255,0.1);
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            text-align: center;
            flex: 1;
        }

        .lang-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .lang-icon:hover {
            background: rgba(255,255,255,0.2);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .title {
            text-align: center;
            font-size: 28px;
            color: #333;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .menu-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .menu-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .menu-item-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .menu-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 20px;
            color: white;
        }

        .menu-item-title {
            font-size: 20px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        /* Menü öğeleri için arka plan resimleri */
        .corbalar { background-image: url('images/corbalar.png'); }
        .nargileler { background-image: url('images/nargileler.png'); }
        .aperatifler { background-image: url('images/aperatifler.png'); }
        .kahvalti { background-image: url('images/kahvaltılar.png'); }
        .tostlar { background-image: url('images/tostlar.png'); }
        .gozlemeler { background-image: url('images/gözlemeler.png'); }
        .durumler { background-image: url('images/durumler.png'); }
        .burgerler { background-image: url('images/burgerler.png'); }
        .makarnalar { background-image: url('images/makarnalar.png'); }
        .pizzalar { background-image: url('images/pizzalar.png'); }
        .anaYemekler { background-image: url('images/anayemekler.png'); }
        .caylar { background-image: url('images/caylar.png'); }
        .turkKahveleri { background-image: url('images/turkKahvesi.png'); }
        .sicakCikolatalar { background-image: url('images/sıcakCikolata.png'); }
        .anaYemekler { background-image: url('images/anayemekler.png'); }
        .kahveler { background-image: url('images/kahveler.png'); }
        .sogukMesrubatlar { background-image: url('images/sogukMesrubatlar.png'); }
        .milkshakeler { background-image: url('images/milkshakeler.png'); }
        .frozenlar { background-image: url('images/frozenlar.png'); }
        .sogukKahveler { background-image: url('images/sogukKahveler.png'); }
        .atistirmaliklar {background-image: url(images/atistirmaliklar.png);}
        .tatlilar {background-image: url(images/tatlilar.png);}

 

        

        /* Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            left: -350px;
            width: 350px;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            color: white;
            transition: left 0.3s ease;
            z-index: 1000;
            overflow-y: auto;
            padding: 80px 25px 25px 25px;
        }

        .sidebar.open {
            left: 0;
        }

        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .welcome-banner {
            background: linear-gradient(135deg, #00AFFF 0%, #0A0F1E 100%);
            color: white;
            padding: 15px 20px;
            margin: -80px -25px 30px -25px;
            position: relative;
        }

        .welcome-text {
            font-size: 24px;
            font-weight: bold;
        }

        .close-btn {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 28px;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
            padding: 5px;
        }

        .restaurant-info {
            margin-bottom: 30px;
        }

        .restaurant-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .logo-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-image: url(images/logo.png);
            background-size: cover;
            background-position: center;
            display:flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .logo-text {
            color: #8B1538;
            font-size: 24px;
            font-weight: bold;
        }

        .restaurant-name {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .restaurant-location {
            color: #ccc;
            margin-bottom: 5px;
        }

        .restaurant-id {
            color: #999;
            font-size: 14px;
        }

        .info-section {
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #fff;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-item:hover {
            color: #fff;
        }

        .info-icon {
            width: 20px;
            margin-right: 12px;
            text-align: center;
        }

        .social-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-item:hover {
            color: #fff;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-info {
            border-top: 1px solid #333;
            padding-top: 20px;
            font-size: 12px;
            color: #666;
            line-height: 1.4;
        }

        .footer {
            text-align: center;
            padding: 20px;
            border-radius: 8px;
            color: #666;
            background: white;
            margin-top: 40px;
        }

        /* Kategori Detay Sayfası Styles */
        .category-page {
            grid-template-columns: 1fr 1fr;
            display: flex;
            flex-direction: column;
            min-height: 100vh;   /* sayfa yüksekliği kadar */
            width: 100%;
            background-image: url('images/whiteWall.jpg');
            background-size: cover;      
            background-position: center; 
            background-attachment: fixed;
            z-index: 2000;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            position: fixed;
            flex-direction: column;
            top: 0;
            left: 0;
            width: 100%;
            min-height: 100%;
            height: 100vh;
            overflow-y: auto;
        }

        .category-page.open {
            transform: translateX(0);
            margin: 0;
            padding: 0;
        }

        .category-header {
            background: linear-gradient(135deg,#00AFFF 0%,  #0A0F1E 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }

        .category-header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .back-section {
            font-size:x-large;
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .back-section:hover {
            background-color: rgba(255,255,255,0.1);
        }


        .category-title-section {
            display: flex;
            align-items: center;
            flex: 1;
            justify-content: center;
        }

        .category-main-title {
            font-size: 24px;
            font-weight: bold;
        }

        .menu-filter {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .menu-filter:hover {
            background-color: rgba(255,255,255,0.1);
        }

        .filter-icon {
            font-size: 20px;
            margin-left: 10px;
        }

        .category-content {
             flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
            
        }

        .menu-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .menu-list-item {
           background: linear-gradient(135deg, #ffffff, #f9f9f9);
         border-radius: 20px;
         padding: 20px;
         display: flex;
         align-items: center;
         gap: 15px;

         box-shadow: 0 4px 20px rgba(0,0,0,0.08);
         transition: transform 0.25s ease, box-shadow 0.25s ease;
         cursor: pointer;
         border: 1px solid rgba(0,0,0,0.05);
         
        }

        .menu-list-item:hover {
             transform: translateY(-5px) scale(1.02);
             box-shadow: 0 8px 25px rgba(0,0,0,0.12);
             background: linear-gradient(135deg, #fefefe, #f5f5f5);
        }

        .menu-item-img {
            width: 120px;
            height: 120px;
            border-radius: 12px;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        .menu-item-details {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .menu-item-name {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }

        .menu-item-description {
            color: #666;
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .menu-item-price {
            font-size: 22px;
            font-weight: bold;
            color: #0A0F1E;
            align-self: flex-start;
        }

        @media (max-width: 768px) {

            .menu-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            
            .header-content {
                padding: 0 15px;
            }
            
            .logo {
                font-size: 20px;
            }
            
            .container {
                padding: 30px 15px;
            }
            
            .title {
                font-size: 24px;
                margin-bottom: 30px;
            }
            .menu-list-item {
                flex-direction: column;
                padding: 15px;
            }
            
            .menu-item-img {
                width: 100%;
                height: 200px;
            }
            
            .category-header-content {
                padding: 0 15px;
            }
            
            .category-content {
                
                padding: 20px 15px;
            }
            
            .back-text {
                display: none;
            }
        }
        