@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Milonga&family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap');
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

/* Color Variables */
:root {
    --main-color: #ff9800;
    --text-color: #ffffff;
    --bg-color: #000000;
}

/* Body and Header Styling */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    background-color: #ffffff;
}

/* Header Styling */
header {
    background-color: var(--bg-color);
    padding: 0px 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navbar Styling */
.navbar {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    background-color: black !important;
    width: 100%;
    padding: 10px 0;
    position: sticky;
    top: 50px;
    z-index: 900;
}

/* Center the Navbar Links */
.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--main-color);
}

/* Social Icons Styling */
.social-icons a {
    margin: 0 8px;
}

.social-icons a img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transition: transform 0.4s, box-shadow 0.4s;
}

.social-icons a:hover img {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Navbar Animation */
.navbar {
    opacity: 0;
    transform: translateY(-100px);
}

.navbar.show {
    opacity: 1;
    transform: translateY(0);
}

/* Custom styles for the navbar toggler */
.navbar-toggler {
    background-color: transparent;
    border: none; /* Remove border */
    outline: none;
}

.navbar-toggler-icon {
    background-color: #fff;
    border-radius: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28155,155,155, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); /* Custom icon color */
}

.navbar-toggler:focus .navbar-toggler-icon,
.navbar-toggler:hover .navbar-toggler-icon {
    background-color: #fff;
    opacity: 0.7;
}
/* Align navbar links to the left when the navbar is collapsed (on small screens) */
@media (max-width: 991.98px) {
    .collapse .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Align links to the left */
        padding-left: 0px; /* Add some padding to the left for spacing */
    }

    .collapse .navbar-nav .nav-item {
        margin: 0px 0; /* Add spacing between each link */
    }



    .navbar-collapse {
        text-align: left; /* Ensure the links align left */
    }
}



/* Category Navigation Bar */
.category-nav {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust weight as needed */
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding: 30px 20px;
    position: sticky;
    top: 120px;
    background-color: white;
    z-index: 800;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-nav ul {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none;
    margin: 0;
}

.category-nav ul li a {
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
}

.category-nav ul li a:hover,
.category-nav ul li a.active {
    background-color: var(--main-color);
    color: #ffffff;
}




/* General Menu Styles */
.menu {
    font-size: 1.1em; /* Adjusted for desktop */
    font-family: 'Rajdhani', sans-serif;
    padding: 50px 0;
    color: #333333;
    background-color: #ffffff;
}

.menu-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700; /* Adjust weight as needed */
    font-size: 50px;
    text-align: center;
    color: #ff9800;
    margin-bottom: 40px;
}

/* Menu Section Styling */
.menu-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.left {
    flex-direction: row;
}

.right {
    flex-direction: row-reverse;
}

/* Category Title Styling */
.menu-category {
    font-size: 28px;
    color: #ff9800;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff9800;
    padding-bottom: 10px;
}

/* Menu Items List */
.menu-items {
    list-style: none;
    padding: 0;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 10px;
}

.item-name {
    font-weight: bold;
    font-size: 18px;
    color: #ff9800;
    margin-right: 10px;
    min-width: 150px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #ff9800;
    margin-left: auto;
    text-align: left;
    min-width: 60px;
}

.description {
    font-size: 14px;
    color: #666666;
    margin-top: 5px;
    padding-left: 15px;
}

/* General Image Styling */
.menu-img {
    width: 80%;
    border-radius: 8px;
    margin: 30px auto;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .menu-section {
        flex-direction: column;
    }

    .menu-category,
    .menu-item,
    .price {
        font-size: 16px;
    }

    .menu-title {
        font-size: 40px;
    }
}

/* Back to Top Button Styling */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000;
    color: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top img {
    width: 60%;
    height: auto;
}

/* Scroll Animation */
.scroll-animation {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animation.animate {
    opacity: 1;
    transform: translateY(0);
}
