        :root {
            --color-primary: #3498db;
            --color-secondary: #39FF14;
            --color-background: #1a1d21;
            --color-surface: #2c2f33;
            --color-text: #ffffff;
            --color-text-secondary: #b3b3b3;
            --color-border: #3498db;
            --color-success: #2ecc71;
            --transition-normal: 300ms ease;
            --radius-lg: 20px;
            --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Fira Sans Condensed', sans-serif;
        }
/* Base Navigation Styles */
nav {
    z-index: 1000; /* Increased z-index */
    position: fixed;
    width: 98%;
    top: 0;
    left: 0;
    background: rgba(44, 47, 51, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom: 2px solid rgba(57, 255, 20, 0.7);
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    height: 80px;
    min-height: 80px;
    margin: 0 1%;
    background-color: var(--color-surface);
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
}
.logo {
    /* width: 150px;
    height: 90px;
    margin-left: 10px; */
}

.logo {
    width: 100px;
    height: 60px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
    flex: 1;
    text-align: right;
    padding-right: 2%;
    font-family: 'Fira Sans Condensed', sans-serif;
}

.nav-links ul li a.auth-button {
    margin-bottom: 0.4rem;
    cursor: pointer;
}

.nav-links ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 0.8rem;
}

.nav-links ul li {
    list-style: none;
    padding: 0.4rem 0.8rem;
    position: relative;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links ul li:hover {
    background: rgba(57, 255, 20, 0.1);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.1);
    transform: translateY(-2px);
}

.nav-links ul li a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}





/* Secondary Links */
.secondary-links {
    display: flex;
    justify-content: flex-end;
    bottom: 10px;
    padding-right: 2%;
    position: relative;  /* Added to ensure proper stacking */
    z-index: 1;  /* Added to maintain link clickability */
}

.secondary-links li {
    list-style: none;
    display: inline-block;
    margin-left: 10px;
}

.secondary-links li a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.secondary-links li a:hover {
    color: #39FF14 !important;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.secondary-links li::after {
    content: '';
    width: 0%;
    height: 3px;
    background: rgba(57, 255, 20, 0.7);
    display: block;
    margin: auto;
    transition: 0.5s;
}

.secondary-links li:hover::after {
    width: 100%;
}

/* Header Section */
.header-section {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(
        to bottom,
        rgba(44, 47, 51, 0.7) 30%,
        rgba(44, 47, 51, 0.9) 70%,
        #2c2f33
    );
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Heading Title Styles */
.headingTitle, .headingTitle1 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 5px;
    text-align: left;
    min-height: 60px;
    z-index: 999;
}

.headingTitle {
    width: 60%;
    padding: 25px 0 5px 200px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.headingTitle1 {
    width: 10%;
    padding: 5px 0 5px 200px;
    font-family: "Montserrat", sans-serif;
    color: #39FF14;
    text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
    font-size: 22px;
    font-weight: 600;
}

/* Header Container and Buttons */
.header-container {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-buttons {
    display: flex;
    align-items: center;
    margin: 2%;
}

/* Search Bar */
.search-bar {
    flex-grow: 1;
    padding: 0.75rem 1.2rem;
    border-radius: 25px;
    border: 2px solid rgba(57, 255, 20, 0.3);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-right: 1rem;
}

.search-bar:focus {
    outline: none;
    border-color: rgba(57, 255, 20, 0.7);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

/* Action Buttons */
.order-now-button, .sign-up-button {
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid rgba(57, 255, 20, 0.7);
    color: #39FF14 !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.1);
}

.order-now-button {
    min-width: 180px;
}

.sign-up-button {
    margin-top: 1.5rem;
}

.order-now-button:hover,
.sign-up-button:hover {
    background: rgba(57, 255, 20, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 255, 20, 0.2);
}

/* Places Autocomplete Styling */
.pac-container {
    background: rgba(44, 47, 51, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.15);
    max-height: 175px;
    overflow-y: auto;
    border-radius: 15px;
    border: 2px solid rgba(57, 255, 20, 0.3);
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    margin-top: 5px;
    padding: 5px 0;
    z-index: 1000;
}

.pac-item {
    padding: 10px 15px;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    color: #ffffff;
    border-radius: 10px;
    margin: 2px 5px;
    transition: all 0.3s ease;
    border: none;
}

.pac-item:hover {
    background: rgba(57, 255, 20, 0.1);
    transform: translateX(5px);
}

.pac-item-query {
    color: #39FF14;
    font-size: 13px;
}

.pac-matched {
    color: rgba(57, 255, 20, 0.8);
    font-weight: 500;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: white;
    transition: transform 0.5s ease;
    z-index: 1002;
    padding: 10px;
}

.hamburger.rotate {
    transform: rotate(90deg);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 800px) {
    nav {
        height: 70px;
        min-height: 70px;
    }

    .hamburger {
        display: block;
        margin-right: 5%;
    }

    .nav-links {
        position: absolute;
        top: 90px;
        right: 20px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(57, 255, 20, 0.7);
        border-radius: 15px;
        width: 200px;
        box-shadow: 0 2px 10px rgba(57, 255, 20, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        padding: 1rem;
        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem;
    }

    .nav-links.active .fa-times {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        color: white;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .search-bar, .order-now-button {
        width: 100%;
        margin: 0;
    }

    .headingTitle {
        font-size: 16px;
        padding-left: 100px;
    }
    
    .headingTitle1 {
        padding-left: 100px;
    }
}

@media (min-width: 801px) {
    .nav-links .fa-times {
        display: none;
    }
}