/* Global Navigation Styles */

/* Navigation Bar */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

/* Home/Back Link */
.nav-home {
    color: #0066FF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-home:hover {
    transform: translateX(-5px);
}

/* Logo */
.logo-nav {
    font-size: 24px;
    font-weight: 700;
    color: #0066FF;
    letter-spacing: -1px;
    line-height: 0.9;
}

.flower-icon-nav {
    color: #FF40C9;
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
    position: relative;
    top: -2px;
}

/* Right Navigation Container */
.nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Navigation Links */
.nav-link {
    color: #0066FF;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: #FF40C9;
    text-underline-offset: 3px;
}

.nav-link.active {
    text-decoration: underline;
    text-decoration-color: #FF40C9;
    text-underline-offset: 4px;
}

/* Order Button */
.order-nav-btn {
    background: #0066FF;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.order-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,255,0.3);
}

/* Mobile/Desktop Text Display */
.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}

/* Mobile Responsive Styles */
@media (max-width: 968px) {
    .mobile-text {
        display: inline;
    }

    .desktop-text {
        display: none;
    }

    .nav-bar {
        padding: 15px;
        margin-bottom: 40px;
        display: grid;
        grid-template-areas:
            "logo logo"
            "back nav";
        gap: 8px;
    }

    .logo-nav {
        grid-area: logo;
        text-align: center;
        margin-bottom: 10px;
    }

    .nav-home {
        grid-area: back;
        font-size: 14px;
        justify-self: start;
        align-self: center;
    }

    .nav-right {
        grid-area: nav;
        justify-self: end;
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }

    .order-nav-btn {
        padding: 6px 15px;
        font-size: 14px;
    }
}

/* Smaller Mobile Screens */
@media (max-width: 480px) {
    .nav-bar {
        padding: 12px;
        margin-bottom: 30px;
    }

    .logo-nav {
        font-size: 20px;
    }

    .nav-right {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: end;
    }

    .nav-link {
        font-size: 13px;
    }

    .order-nav-btn {
        padding: 5px 12px;
        font-size: 13px;
    }

    .nav-home {
        font-size: 13px;
    }
}