/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: #E3E3E3;
    margin: 0;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100vh;  /* Full height of the viewport */
}

/* Middle Left Image */
.middle-left-image {
    position: fixed; /* Keeps it fixed in place */
    top: 30%;        /* Centers it vertically */
    left: 0;         /* Aligns it to the left of the screen */
    transform: translateY(-50%); /* Adjusts for true vertical centering */
    width: 80px;    /* Adjust the size of the image */
    z-index: 10;     /* Ensures the image stays above other content */
}

/* Background Images */
.background-img {
    position: absolute;
    width: 150px;
    /* Removed opacity to make them fully visible */
}

.bg-top-left {
    top: 0px;
    left: 0px;
    width: 100px;
}

.bg-top-right {
    top: 0px;
    right: 40px;
}

.bg-bottom-left {
    bottom: 0px;
    left: 0px;
}

.bg-bottom-right {
    bottom: 0px;
    right: 0px;
}

/* Leaf Images */
.leaf {
    position: absolute;
    width: 60px;   /* Adjust size as needed */
    z-index: 5;    /* Ensures the leaf images are above the background */
}

/* Top Left Leaf (on top of the orange image) */
.leaf.top-left {
    height: 200px;
    width: auto;
    top: 0px;
    left: 10px;
}

/* Top Right Leaf */
.leaf.top-right {
    height: 250px;
    width: auto;
    top: 0px;
    right: 0px;
}

/* Bottom Right Leaf (on the left side of the pizza image) */
.leaf.bottom-right {
    bottom: 0px;
    right: 110px;
}

/* Middle Left Leaf */
.leaf.middle-left {
    position: fixed;
    top: 42%;            /* Vertically centers it */
    left: 0;             /* Aligns it to the left side */
    transform: translateY(-50%); /* Ensures it's centered vertically */
    width: 60px;         /* Adjust the size of the leaf */
    z-index: 5;          /* Ensure it appears above other elements */
}

/* Menu Container */
.menu-container {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    position: relative;
    z-index: 10;
    height: 100%;  /* Ensures container takes full height */
}

/* Logo */
.logo img {
    width: 200px;
    margin-bottom: 40px; /* Moved logo down */
    margin-top: 20px; /* Added margin from the top */
}

.menu-grid a {
    text-decoration: none; /* Removes underline */
    color: black; /* Makes the text black */
}

.menu-grid a:hover {
    color: black; /* Ensures the text stays black even on hover */
}


.menu-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 5px;  /* Reduced the gap between buttons to make them closer */
    justify-items: center;
}


/* Menu Buttons (Larger and closer) */
.menu-item {
    background: #E3E3E3; 
    width: 100px;   /* Increased size */
    height: 90px;   /* Increased size */
    padding: 12px;  /* Increased padding */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid black;
    transition: transform 0.2s ease-in-out;
    margin: 0;
}

.menu-item:hover {
    transform: scale(1.05);
}

/* Menu Button Icons */
.menu-item img {
    width: 50px;   /* Increased icon size */
    height: 50px;  /* Increased icon size */
}

/* Menu Button Text */
.menu-item p {
    margin: 5px 0 0;
    font-size: 14px;   /* Slightly larger text */
    font-weight: bold;
}

/* Google Review Button */
.menu-item.google {
    position: relative;
}

.menu-item.google p {
    position: absolute;
    bottom: 0;
    right: -40px;
    background: red;
    color: white;
    padding: 5px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    transform: rotate(-20deg);
    text-align: center;
    line-height: 1.2;
}

.menu-item.google p span {
    display: block;
}

/* Social Media Icons */
.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease-in-out;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Language Toggle Button */
/* Language Toggle Button */
.language-button {
    position: fixed;
    top: 40px; /* Keeps the button in the same position */
    right: 10px; /* Keeps the button in the same position */
    background: red;
    color: white;
    font-size: 10px;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    width: 30px; /* Smaller size */
    height: 30px; /* Smaller size */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Language Dropdown Container */
.language-dropdown {
    position: relative;
    display: inline-block;
}


/* Dropdown Content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute; /* Ensures it's positioned below the button */
    top: 35px; /* Position the dropdown directly below the button */
    right: 0;
    background-color: transparent; /* Set background of dropdown to transparent */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    border-radius: 8px;
    width: 60px; /* Adjust width of the dropdown */
    padding: 5px 0; /* Add padding for spacing */
    top: 60px; /* Keeps the button in the same position */
    right: -190px; /* Keeps the button in the same position */

}

/* Dropdown Item (buttons) */
.dropdown-item {
    background-color: red;
    color: white;
    font-size: 10px;
    font-weight: bold;
    border: none;
    border-radius: 40px;
    width: 40px;
    height: 30px;
    padding: 5px 0; /* Reduced padding for smaller buttons */
    cursor: pointer;
    text-align: center;
    box-shadow: none;
    margin-bottom: 5px; /* Space between the items */
    justify-content: center;
}

/* Show dropdown when the language button is focused or hovered */
.language-dropdown:hover .dropdown-content,
.language-button:focus + .dropdown-content {
    display: block;
}

/* Optional: Styling for the button when it's focused (to keep dropdown open) */
.language-button:focus {
    outline: none; /* Removes the default focus outline */
}

.language-dropdown.active .dropdown-content {
    display: block;
}
.language-toggle {
    display: none; /* Hide the checkbox */
}


.bottom-image-container {
    text-align: center;
    margin-top: 30px;
}

.bottom-image {
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    height: auto;
}

.menu-category[data-category="chorba"] {
    background-color: #e0e0e0; /* Slightly darker gray */
    padding: 15px;
    border-radius: 8px;
}
