/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 86px;
}

/* Navbar Styles */
.navbar {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.logo .food {
    color: #ff6b35;
}

.logo .hutti {
    color: #4CAF50;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
    color: #ff6b35;
}

.nav-links li a.active {
    color: #4CAF50;
}

.nav-links li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4CAF50;
}

/* Desktop Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.signup-btn {
    background: transparent;
    color: #333;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.signup-btn:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(164, 214, 94, 0.3);
}

.login-btn {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(164, 214, 94, 0.3);
    color: #333333;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-btn:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(164, 214, 94, 0.3);
}

.login-btn::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23333333' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

/* Orange Banner Section */
.orange-banner-section {
    background: linear-gradient(135deg, #febf1a, #febf1a);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.orange-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #4CAF50, #45a049);;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.discover-btn:hover {
    background: linear-gradient(135deg, #4CAF50, #45a049);;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.discover-btn::after {
    content: '→';
    font-size: 1.3rem;
}

.banner-food-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background: url('/assets/images/frontendimages/orange-footer-left.avif')
        center / cover no-repeat;
    opacity: 0.3;
}

.banner-food-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    background: url('/assets/images/frontendimages/orange-footer-right.avif') center/cover;
    opacity: 0.3;
}

/* Footer Section */
.footer-section {
    background: #e9e3e3;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

/* .footer-brand {
    max-width: 300px;
} */

/* .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo .food {
    color: #ff6b35;
}

.footer-logo .hutti {
    color: #4CAF50;
} */

.footer-description {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-contact {
    color: #666;
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #4CAF50;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-links {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 15px;
}

.mobile-nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links li a:hover {
    color: #ff6b35;
}

.mobile-nav-links li a.active {
    color: #4CAF50;
}

/* Mobile Auth Buttons */
.mobile-auth-buttons {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.mobile-auth-buttons .signup-btn {
    background: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
}

.mobile-auth-buttons .signup-btn:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.mobile-auth-buttons .login-btn {
    background: #4CAF50;
    color: white;
    border: 2px solid #4CAF50;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.mobile-auth-buttons .login-btn:hover {
    background: #45a049;
    border-color: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.mobile-auth-buttons .login-btn::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar .container {
        padding: 0 15px;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-food-left,
    .banner-food-right {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .mobile-auth-buttons {
        display: flex;
    }
}

@media (max-width: 480px) {
    .mobile-auth-buttons .signup-btn,
    .mobile-auth-buttons .login-btn {
        padding: 16px 20px;
        font-size: 18px;
        border-radius: 10px;
    }

    .navbar .container {
        padding: 0 10px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}





/* Mobile Bottom Navigation - Separate CSS File */
/* Save this as: public/assets/css/mobile-nav.css */

/* Mobile Navigation Styles */
@media (max-width: 767px) {
    /* Body padding for fixed bottom nav */
    body {
        padding-bottom: 85px;
    }

    /* Hide hamburger menu lines on mobile */
    .navbar-toggler,
    .mobile-menu-toggle,
    .hamburger-menu,
    .menu-toggle,
    .navbar-toggler-icon {
        display: none !important;
    }
}

/* Mobile Bottom Navigation */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 12px 0;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #8e8e8e;
    transition: all 0.3s ease;
    padding: 8px 12px;
    flex: 1;
    max-width: 80px;
    position: relative;
}

.mobile-nav-item:hover {
    text-decoration: none;
    color: #4CAF50;
}

.mobile-nav-item.active {
    color: #4CAF50;
}

/* Regular nav icons */
.mobile-nav-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    transition: all 0.3s ease;
}

/* Center Buzz Icon - Special Styling */
.mobile-nav-item.center-buzz {
    position: relative;
    margin-top: -20px; /* Elevate the center icon */
}

.mobile-nav-item.center-buzz .mobile-nav-icon {
    width: 56px;
    height: 56px;
    background: #6ba82f; /* Green background matching your image */
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(107, 168, 47, 0.3);
    margin-bottom: 8px;
}

.mobile-nav-item.center-buzz .mobile-nav-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    fill: white;
}

.mobile-nav-item.center-buzz {
    color: #6ba82f;
}

.mobile-nav-item.center-buzz:hover .mobile-nav-icon {
    background: #5d9429;
    transform: scale(1.05);
}

/* Nav text */
.mobile-nav-text {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

/* Mobile Login Button Styling */
.mobile-login-btn {
    display: none; /* hidden by default */
}

@media (max-width: 768px) {
    .mobile-login-btn {
        display: block;  /* show only on mobile */
    }

    .mobile-login-btn .login-btn {
        background: #6ba82f; /* same style as your User button */
        color: white;
        padding: 10px 18px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(107, 168, 47, 0.3);
    }

    .mobile-login-btn .login-btn:hover {
        background: #5d9429;
        transform: translateY(-1px);
    }
}


/* Hover effects */
.mobile-nav-item:not(.center-buzz):hover .mobile-nav-icon svg {
    stroke: #4CAF50;
    transform: scale(1.1);
}

/* Hide on desktop and tablets */
@media (min-width: 768px) {
    .mobile-nav {
        display: none;
    }

    body {
        padding-bottom: 0;
    }
}

/* Extra safe area padding for iPhone */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .mobile-nav {
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
}

/* Smooth transitions for all interactions */
.mobile-nav-item * {
    transition: all 0.2s ease-in-out;
}

/* Focus states for accessibility */
.mobile-nav-item:focus {
    outline: none;
}

.mobile-nav-item:focus .mobile-nav-icon {
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
    border-radius: 50%;
}

/* Additional refinements */
.mobile-nav-item.center-buzz .mobile-nav-text {
    font-weight: 600;
    margin-top: 2px;
}

/* Ensure proper spacing */
.mobile-nav-container > .mobile-nav-item:first-child {
    margin-left: 0;
}

.mobile-nav-container > .mobile-nav-item:last-child {
    margin-right: 0;
}
