﻿body {
    font-family: "Baloo Bhaijaan 2", Arial, sans-serif;
    margin: 0;
    padding: 0;
    /*background-color: floralwhite;*/
    direction: rtl;
    min-height: 100vh;
}

.icon {
    display:inline-flex;
    width: 40px;
    text-decoration: none;
}

.icon img{
    width:100%;
    height: auto;
}

header {
    background-color: #1E1D2D;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto; /* Adjust this depending on the desired height of your container */
}

.logo {
    width: 70%; /* Fill the width on mobile devices */
    max-width: 300px; /* Set a maximum width for larger screens */
    height: auto; /* Maintain aspect ratio */
}

/* Fixed Button Styles */
#scrollButton {
    position: fixed;
    padding: 15px 20px;
    margin-bottom: 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    font-size: 1.2em;
    font-weight: bold;
    stroke: purple;
    outline: 3px;
    outline-color: darkblue;
    outline-width: 2px;
}

/* For larger screens, adjust the width and centering */
@media (min-width: 768px) {
    .logo {
        width: auto; /* Auto width */
        max-height: 200px; /* Adjust max height as needed */
    }
}

.menu-section {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-header {
    padding: 10px 20px;
    background-color: #1E1D2D;
    color: #95CEE0;
    cursor: pointer;
    display: flow-root;
    font-size: 16px;
    font-weight: bold;
}

    .section-header .section-title {
        max-width: 200px;
    }

    .section-header .section-desc {
        margin-left: 10px;
        float: left;
        width: 40px;
        text-align: center;
    }

.section-content {
    display: none;
    padding: 10px 20px;
    background-color: #E9F5F9;
}

.item {
    /*display:flow-root;*/
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

.item-sizes {
    /*display: flow-root;*/
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
    background-color: #95CEE0;
}

.item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: bold;
}

.item-name-holder {
    font-weight: bold;
    display: inline-block;
    margin-top: 5px;
}

.price-title {
    color: #000 !important;
    font-weight:bold;
}

.item-price {
    margin-left: 10px;
    text-align: center;
    float: left;
    color: #111;
    width: 40px;
    max-height: 22px;
    overflow: hidden;
    font-weight:bold;
}

    .item-price a {
        color: inherit;
    }

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.footer {
    background-color: white;
    /*display:contents;*/
    position: sticky !important;
    text-align: center;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
}

.social-bar {
    text-align: center;
    background-color: #95CEE0;
    padding: 3px;
    margin-bottom: 3px;
}

/* Responsive Styles */
@media screen and (min-width: 768px) {
    .menu-section {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}
